From a824266a4c2cec4036ef3a69155f32e9980449f9 Mon Sep 17 00:00:00 2001 From: "a.h.babazadeh" Date: Sun, 3 Sep 2023 01:58:04 +0330 Subject: [PATCH 1/4] feat: write logs into file --- cmd/cmd.go | 30 ++++++++++++------------- config/config.go | 8 +++---- config/config_test.go | 3 ++- config/example_config.toml | 24 ++++++++++++++++++++ go.mod | 1 + go.sum | 2 ++ util/logger/config.go | 46 +++++++++++++++++++++++++++++++++++--- util/logger/logger.go | 40 +++++++++++++++++++++++++++++++-- 8 files changed, 129 insertions(+), 25 deletions(-) diff --git a/cmd/cmd.go b/cmd/cmd.go index 06e2bf369..9b72d3eb0 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -261,13 +261,13 @@ func CreateNode(numValidators int, chain genesis.ChainType, workingDir string, ) { // To make process faster, we update the password after creating the addresses walletPath := PactusDefaultWalletPath(workingDir) - wallet, err := wallet.Create(walletPath, mnemonic, "", chain) + walletInstance, err := wallet.Create(walletPath, mnemonic, "", chain) if err != nil { return nil, nil, err } for i := 0; i < numValidators; i++ { - addr, err := wallet.DeriveNewAddress(fmt.Sprintf("Validator address %v", i+1)) + addr, err := walletInstance.DeriveNewAddress(fmt.Sprintf("Validator address %v", i+1)) if err != nil { return nil, nil, err } @@ -275,7 +275,7 @@ func CreateNode(numValidators int, chain genesis.ChainType, workingDir string, } for i := 0; i < numValidators; i++ { - addr, err := wallet.DeriveNewAddress(fmt.Sprintf("Reward address %v", i+1)) + addr, err := walletInstance.DeriveNewAddress(fmt.Sprintf("Reward address %v", i+1)) if err != nil { return nil, nil, err } @@ -294,12 +294,12 @@ func CreateNode(numValidators int, chain genesis.ChainType, workingDir string, return nil, nil, err } - err = config.SaveTestnetConfig(confPath, numValidators) + err = config.SaveTestnetConfig(workingDir, confPath, numValidators) if err != nil { return nil, nil, err } case genesis.Localnet: - err = makeLocalGenesis(*wallet).SaveToFile(genPath) + err = makeLocalGenesis(*walletInstance).SaveToFile(genPath) if err != nil { return nil, nil, err } @@ -310,12 +310,12 @@ func CreateNode(numValidators int, chain genesis.ChainType, workingDir string, } } - err = wallet.UpdatePassword("", walletPassword) + err = walletInstance.UpdatePassword("", walletPassword) if err != nil { return nil, nil, err } - err = wallet.Save() + err = walletInstance.Save() if err != nil { return nil, nil, err } @@ -361,7 +361,7 @@ func StartNode(workingDir string, passwordFetcher func(*wallet.Wallet) (string, // Now, attempt to restore the config file with the number of validators from the old config. switch gen.ChainType() { case genesis.Testnet: - err = config.SaveTestnetConfig(confPath, confBack.Node.NumValidators) + err = config.SaveTestnetConfig(workingDir, confPath, confBack.Node.NumValidators) if err != nil { return nil, nil, err } @@ -379,11 +379,11 @@ func StartNode(workingDir string, passwordFetcher func(*wallet.Wallet) (string, } walletPath := PactusDefaultWalletPath(workingDir) - wallet, err := wallet.Open(walletPath, true) + walletInstance, err := wallet.Open(walletPath, true) if err != nil { return nil, nil, err } - addrLabels := wallet.AddressLabels() + addrLabels := walletInstance.AddressLabels() // Create signers if len(addrLabels) < conf.Node.NumValidators { @@ -394,11 +394,11 @@ func StartNode(workingDir string, passwordFetcher func(*wallet.Wallet) (string, validatorAddrs[i] = addrLabels[i].Address } signers := make([]crypto.Signer, conf.Node.NumValidators) - password, ok := passwordFetcher(wallet) + password, ok := passwordFetcher(walletInstance) if !ok { return nil, nil, fmt.Errorf("aborted") } - prvKeys, err := wallet.PrivateKeys(password, validatorAddrs) + prvKeys, err := walletInstance.PrivateKeys(password, validatorAddrs) if err != nil { return nil, nil, err } @@ -421,17 +421,17 @@ func StartNode(workingDir string, passwordFetcher func(*wallet.Wallet) (string, } } - node, err := node.NewNode(gen, conf, signers, rewardAddrs) + nodeInstance, err := node.NewNode(gen, conf, signers, rewardAddrs) if err != nil { return nil, nil, err } - err = node.Start() + err = nodeInstance.Start() if err != nil { return nil, nil, err } - return node, wallet, nil + return nodeInstance, walletInstance, nil } // makeLocalGenesis makes genesis file for the local network. diff --git a/config/config.go b/config/config.go index 855cccad7..c4925b628 100644 --- a/config/config.go +++ b/config/config.go @@ -68,7 +68,7 @@ func (conf *NodeConfig) BasicCheck() error { return nil } -func DefaultConfig() *Config { +func DefaultConfig(workingDir ...string) *Config { conf := &Config{ Node: DefaultNodeConfig(), Store: store.DefaultConfig(), @@ -76,7 +76,7 @@ func DefaultConfig() *Config { Sync: sync.DefaultConfig(), TxPool: txpool.DefaultConfig(), Consensus: consensus.DefaultConfig(), - Logger: logger.DefaultConfig(), + Logger: logger.DefaultConfig(workingDir...), GRPC: grpc.DefaultConfig(), HTTP: http.DefaultConfig(), Nanomsg: nanomsg.DefaultConfig(), @@ -93,8 +93,8 @@ func SaveMainnetConfig(path string, numValidators int) error { return util.WriteFile(path, []byte(conf)) } -func SaveTestnetConfig(path string, numValidators int) error { - conf := DefaultConfig() +func SaveTestnetConfig(workingDir, path string, numValidators int) error { + conf := DefaultConfig(workingDir) conf.Node.NumValidators = numValidators conf.Network.Name = "pactus-testnet" conf.Network.Listens = []string{"/ip4/0.0.0.0/tcp/21777", "/ip6/::/tcp/21777"} diff --git a/config/config_test.go b/config/config_test.go index bc0c70361..006391f67 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -1,6 +1,7 @@ package config import ( + "path/filepath" "strings" "testing" @@ -22,7 +23,7 @@ func TestSaveMainnetConfig(t *testing.T) { func TestSaveTestnetConfig(t *testing.T) { path := util.TempFilePath() - assert.NoError(t, SaveTestnetConfig(path, 7)) + assert.NoError(t, SaveTestnetConfig(filepath.Dir(path), path, 7)) conf, err := LoadFromFile(path, true) assert.NoError(t, err) diff --git a/config/example_config.toml b/config/example_config.toml index aa1f07b7f..d901dcb69 100644 --- a/config/example_config.toml +++ b/config/example_config.toml @@ -130,6 +130,30 @@ # `logger` contains configuration options for the logger. [logger] + # 'console_logging_enabled' indicates whether logs should stderr or stdout. + # Default is true. + ## console_logging_enabled = true + # 'encode_logs_as_json' indicates whether logs should encode as json or not. + # Default is true. + ## encode_logs_as_json = true + # 'file_logging_enabled' indicates whether logs should write into file or not. + # Default is false. + ## file_logging_enabled = false + # 'directory' indicates what is the directory path of log file. + # Default is working dir when you path through command line. + ## directory = "" + # 'filename' indicates what is the file path of log file. + # Default is combine of working dir when you path through command line plus pactus.log. + ## filename = "" + # 'max_size' indicates what is maximum size of log file. + # Default is 500 megabytes. + ## max_size = 500 + # 'max_backups' indicates what is maximum backups from log file. + # Default is 3 files. + ## max_backups = 3 + # 'max_age' indicates what is maximum period to hold log file. + # Default is 30 days. + ## max_age = 30 # `colorful` indicates whether log can be colorful or not. # Default is true. ## colorful = true diff --git a/go.mod b/go.mod index 01dbd14ad..21f218dbc 100644 --- a/go.mod +++ b/go.mod @@ -25,6 +25,7 @@ require ( golang.org/x/crypto v0.7.0 google.golang.org/grpc v1.53.0 google.golang.org/protobuf v1.30.0 + gopkg.in/natefinch/lumberjack.v2 v2.2.1 ) require ( diff --git a/go.sum b/go.sum index 46a1578c7..ec60c951a 100644 --- a/go.sum +++ b/go.sum @@ -702,6 +702,8 @@ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EV gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= +gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= +gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/util/logger/config.go b/util/logger/config.go index 2b89273dc..9ce089f86 100644 --- a/util/logger/config.go +++ b/util/logger/config.go @@ -1,14 +1,54 @@ package logger +import "path/filepath" + +const ( + LogDirectory = "logs" + LogFilename = "pactus.log" +) + type Config struct { + // ConsoleLoggingEnabled Enable console logging + ConsoleLoggingEnabled bool `toml:"console_logging_enabled"` + // EncodeLogsAsJSON makes the log framework log JSON + EncodeLogsAsJSON bool `toml:"encode_logs_as_json"` + // FileLoggingEnabled makes the framework log to a file + // the fields below can be skipped if this value is false! + FileLoggingEnabled bool `toml:"file_logging_enabled"` + // Directory to log to when file logging is enabled + Directory string `toml:"directory"` + // Filename is the name of the logfile which will be placed inside the directory + Filename string `toml:"filename"` + // MaxSize the max size in MB of the logfile before it's rolled + MaxSize int `toml:"max_size"` + // MaxBackups the max number of rolled files to keep + MaxBackups int `toml:"max_backups"` + // MaxAge the max age in days to keep a logfile + MaxAge int `toml:"max_age"` + Colorful bool `toml:"colorful"` Levels map[string]string `toml:"levels"` } -func DefaultConfig() *Config { +func DefaultConfig(workingDir ...string) *Config { + var logDir string + var logFilename string + + if len(workingDir) > 0 { + logDir = filepath.Join(workingDir[0], LogDirectory) + logFilename = filepath.Join(logDir, LogFilename) + } + conf := &Config{ - Levels: make(map[string]string), - Colorful: true, + ConsoleLoggingEnabled: true, + EncodeLogsAsJSON: true, + Directory: logDir, + MaxSize: 500, // megabytes + MaxBackups: 3, // files + MaxAge: 30, // days + Filename: logFilename, + Levels: make(map[string]string), + Colorful: true, } conf.Levels["default"] = "info" diff --git a/util/logger/logger.go b/util/logger/logger.go index fe11771b5..45a84546c 100644 --- a/util/logger/logger.go +++ b/util/logger/logger.go @@ -3,8 +3,11 @@ package logger import ( "encoding/hex" "fmt" + "io" "os" + "gopkg.in/natefinch/lumberjack.v2" + "github.com/rs/zerolog" "github.com/rs/zerolog/log" ) @@ -89,14 +92,37 @@ func addFields(event *zerolog.Event, keyvals ...interface{}) *zerolog.Event { } func NewSubLogger(name string, obj fmt.Stringer) *SubLogger { + var writers []io.Writer + + if getLoggersInst().config.ConsoleLoggingEnabled { + writers = append(writers, zerolog.ConsoleWriter{Out: os.Stderr}) + } + + if getLoggersInst().config.FileLoggingEnabled { + if err := os.MkdirAll(getLoggersInst().config.Directory, 0o744); err != nil { + log.Error().Err(err).Str("path", getLoggersInst().config.Directory). + Msg("can't create log directory") + goto ConsoleLogger + } + fl := &lumberjack.Logger{ + Filename: getLoggersInst().config.Filename, + MaxBackups: getLoggersInst().config.MaxBackups, + MaxSize: getLoggersInst().config.MaxSize, + MaxAge: getLoggersInst().config.MaxAge, + } + writers = append(writers, fl) + } + +ConsoleLogger: + mw := io.MultiWriter(writers...) sl := &SubLogger{ - logger: zerolog.New(os.Stderr).With().Timestamp().Logger(), + logger: zerolog.New(mw).With().Timestamp().Logger(), name: name, obj: obj, } if getLoggersInst().config.Colorful { - sl.logger = sl.logger.Output(zerolog.ConsoleWriter{Out: os.Stderr}) + sl.logger = sl.logger.Output(mw) } lvlStr := getLoggersInst().config.Levels[name] @@ -109,6 +135,16 @@ func NewSubLogger(name string, obj fmt.Stringer) *SubLogger { sl.logger.Level(lvl) } + sl.logger.Info(). + Bool("fileLogging", getLoggersInst().config.FileLoggingEnabled). + Bool("jsonLogOutput", getLoggersInst().config.EncodeLogsAsJSON). + Str("logDirectory", getLoggersInst().config.Directory). + Str("fileName", getLoggersInst().config.Filename). + Int("maxSizeMB", getLoggersInst().config.MaxSize). + Int("maxBackups", getLoggersInst().config.MaxBackups). + Int("maxAgeInDays", getLoggersInst().config.MaxAge). + Msg("logging configured") + getLoggersInst().subs[name] = sl return sl } From 4ad581991dbbd575b075b6ad40888f9019d34266 Mon Sep 17 00:00:00 2001 From: amir babazadeh Date: Wed, 6 Sep 2023 10:30:49 +0330 Subject: [PATCH 2/4] fix: resolve request changes that they related to logger configurations --- cmd/cmd.go | 4 +- config/config.go | 8 +- config/config_test.go | 3 +- config/example_config.toml | 24 - consensus/logs/pactus.log | 5355 ++++++++ network/logs/pactus.log | 253 + node/logs/pactus.log | 10 + state/logs/pactus.log | 545 + sync/firewall/logs/pactus.log | 21 + sync/logs/pactus.log | 412 + tests/logs/pactus.log | 22677 ++++++++++++++++++++++++++++++++ txpool/logs/pactus.log | 1633 +++ util/logger/config.go | 41 +- util/logger/logger.go | 53 +- util/logger/logs/pactus.log | 2 + www/http/logs/pactus.log | 25 + 16 files changed, 30973 insertions(+), 93 deletions(-) create mode 100644 consensus/logs/pactus.log create mode 100644 network/logs/pactus.log create mode 100644 node/logs/pactus.log create mode 100644 state/logs/pactus.log create mode 100644 sync/firewall/logs/pactus.log create mode 100644 sync/logs/pactus.log create mode 100644 tests/logs/pactus.log create mode 100644 txpool/logs/pactus.log create mode 100644 util/logger/logs/pactus.log create mode 100644 www/http/logs/pactus.log diff --git a/cmd/cmd.go b/cmd/cmd.go index 9b72d3eb0..48c1f3d5d 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -294,7 +294,7 @@ func CreateNode(numValidators int, chain genesis.ChainType, workingDir string, return nil, nil, err } - err = config.SaveTestnetConfig(workingDir, confPath, numValidators) + err = config.SaveTestnetConfig(confPath, numValidators) if err != nil { return nil, nil, err } @@ -361,7 +361,7 @@ func StartNode(workingDir string, passwordFetcher func(*wallet.Wallet) (string, // Now, attempt to restore the config file with the number of validators from the old config. switch gen.ChainType() { case genesis.Testnet: - err = config.SaveTestnetConfig(workingDir, confPath, confBack.Node.NumValidators) + err = config.SaveTestnetConfig(confPath, confBack.Node.NumValidators) if err != nil { return nil, nil, err } diff --git a/config/config.go b/config/config.go index c4925b628..855cccad7 100644 --- a/config/config.go +++ b/config/config.go @@ -68,7 +68,7 @@ func (conf *NodeConfig) BasicCheck() error { return nil } -func DefaultConfig(workingDir ...string) *Config { +func DefaultConfig() *Config { conf := &Config{ Node: DefaultNodeConfig(), Store: store.DefaultConfig(), @@ -76,7 +76,7 @@ func DefaultConfig(workingDir ...string) *Config { Sync: sync.DefaultConfig(), TxPool: txpool.DefaultConfig(), Consensus: consensus.DefaultConfig(), - Logger: logger.DefaultConfig(workingDir...), + Logger: logger.DefaultConfig(), GRPC: grpc.DefaultConfig(), HTTP: http.DefaultConfig(), Nanomsg: nanomsg.DefaultConfig(), @@ -93,8 +93,8 @@ func SaveMainnetConfig(path string, numValidators int) error { return util.WriteFile(path, []byte(conf)) } -func SaveTestnetConfig(workingDir, path string, numValidators int) error { - conf := DefaultConfig(workingDir) +func SaveTestnetConfig(path string, numValidators int) error { + conf := DefaultConfig() conf.Node.NumValidators = numValidators conf.Network.Name = "pactus-testnet" conf.Network.Listens = []string{"/ip4/0.0.0.0/tcp/21777", "/ip6/::/tcp/21777"} diff --git a/config/config_test.go b/config/config_test.go index 006391f67..bc0c70361 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -1,7 +1,6 @@ package config import ( - "path/filepath" "strings" "testing" @@ -23,7 +22,7 @@ func TestSaveMainnetConfig(t *testing.T) { func TestSaveTestnetConfig(t *testing.T) { path := util.TempFilePath() - assert.NoError(t, SaveTestnetConfig(filepath.Dir(path), path, 7)) + assert.NoError(t, SaveTestnetConfig(path, 7)) conf, err := LoadFromFile(path, true) assert.NoError(t, err) diff --git a/config/example_config.toml b/config/example_config.toml index d901dcb69..aa1f07b7f 100644 --- a/config/example_config.toml +++ b/config/example_config.toml @@ -130,30 +130,6 @@ # `logger` contains configuration options for the logger. [logger] - # 'console_logging_enabled' indicates whether logs should stderr or stdout. - # Default is true. - ## console_logging_enabled = true - # 'encode_logs_as_json' indicates whether logs should encode as json or not. - # Default is true. - ## encode_logs_as_json = true - # 'file_logging_enabled' indicates whether logs should write into file or not. - # Default is false. - ## file_logging_enabled = false - # 'directory' indicates what is the directory path of log file. - # Default is working dir when you path through command line. - ## directory = "" - # 'filename' indicates what is the file path of log file. - # Default is combine of working dir when you path through command line plus pactus.log. - ## filename = "" - # 'max_size' indicates what is maximum size of log file. - # Default is 500 megabytes. - ## max_size = 500 - # 'max_backups' indicates what is maximum backups from log file. - # Default is 3 files. - ## max_backups = 3 - # 'max_age' indicates what is maximum period to hold log file. - # Default is 30 days. - ## max_age = 30 # `colorful` indicates whether log can be colorful or not. # Default is true. ## colorful = true diff --git a/consensus/logs/pactus.log b/consensus/logs/pactus.log new file mode 100644 index 000000000..14c3cf374 --- /dev/null +++ b/consensus/logs/pactus.log @@ -0,0 +1,5355 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"trace","_consensus":"{pc1pcs2k0aan 0/0/new-height/0}","duration":"15.521987878s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1pcs2k0aan 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pcs2k0aan 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 0/0/new-height/0}","duration":"25.481219387s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/propose/0}","proposer":"pc1pf25vj7dt2svc0drluwlq4mkjqe7jstrsuznycx","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ AFC5F133A6A4 ๐Ÿ‘ค pc1pr7ssww8f}","time":"2023-09-06T10:25:04+03:30","message":"vote has invalid height"} +{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 0A3D82B97B68 ๐Ÿ‘ค pc1pr7ssww8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C5A6C2CA14A2 ๐Ÿ‘ค pc1pf25vj7dt}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ D486EBA51205 ๐Ÿ‘ค pc1pr7ssww8f}","time":"2023-09-06T10:25:04+03:30","message":"vote has invalid height"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 0/0/new-height/0}","duration":"25.39993949s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/propose/0}","proposer":"pc1p9x9srzen6z22mkwymfscus9vk87sf8egfg0xpu","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen ๐Ÿ’ป AD623B07BA3D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pnq2dqn6d}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pa6t8w6ep}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","hash":"B6FAE2A328B1","time":"2023-09-06T10:25:04+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pnq2dqn6d}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pa6t8w6ep}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","hash":"B6FAE2A328B1","time":"2023-09-06T10:25:04+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B6FAE2A328B1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen ๐Ÿ’ป AD623B07BA3D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/commit/0}","hash":"B6FAE2A328B1","time":"2023-09-06T10:25:04+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/new-height/0}","duration":"35.354551309s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 0/0/new-height/0}","duration":"15.331346287s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/propose/0}","proposer":"pc1p4zp2ca8f3ldp4k923swz740q74f06nhhjt84mw","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/propose/0}","proposer":"pc1pauyx9jgc0hxqva9msxgvd00cgz6xz9g5f5rack","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/0/PREPARE โŒ˜ A50B095348C4 ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/2/PREPARE โŒ˜ 7AE2975EFAFE ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ E5B731DB81E9 ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/1/PRECOMMIT โŒ˜ DBD4075720AB ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 267B01E31912 ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"vote has invalid height"} +{"level":"error","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 216F744C4870 ๐Ÿ‘ค pc1pf4e5ennc}","err":"invalid address: cannot find validator pc1pf4e5enncj24wjpteyg0zk4nmn33jl3jugf7fgv in committee","time":"2023-09-06T10:25:04+03:30","message":"error on adding a vote"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 0/0/new-height/0}","duration":"25.205875509s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/propose/0}","proposer":"pc1p9mpsvz0uyjlrk3gd32ztckjleacxgawu06emwy","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p3gpv5gd5}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1pvzk9clw2}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","hash":"F838FE2B9BF6","time":"2023-09-06T10:25:04+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"block is committed for this height"} +{"level":"info","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1pkmap92nt}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 0/0/new-height/0}","duration":"25.060481894s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/propose/0}","proposer":"pc1pyw9dhu5hwwuymqqrvyfkx7en5h5fwktnd7japn","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pz0y892dn}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pfj7l8rs7}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pz0y892dn}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pfj7l8rs7}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"query for a decided proposal"} +{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"block is committed for this height"} +{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pwsjghqpg}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","height":2,"time":"2023-09-06T10:25:04+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/commit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/new-height/0}","duration":"35.004673788s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 0/0/new-height/0}","duration":"14.988643188s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/propose/0}","proposer":"pc1ppzgn9qpcss8lczrghrs6ckvhyt00dwvnzy8lcy","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 57C3DFC08172 ๐Ÿ‘ค pc1ppzgn9qpc ๐Ÿ’ป B7EA8021E0BE ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 57C3DFC08172 ๐Ÿ‘ค pc1ppzgn9qpc}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ 97DEEE62D2BA ๐Ÿ‘ค pc1ptgfjtjru}","time":"2023-09-06T10:25:05+03:30","message":"vote has invalid height"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 0/0/new-height/0}","duration":"14.965343945s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/propose/0}","proposer":"pc1pa884fp7xwhd4lpppvedlyexgtkgunx4dhyca2w","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ C769DF5664E6 ๐Ÿ‘ค pc1pa884fp7x}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 8658B2B59EE5 ๐Ÿ‘ค pc1ppykxa7mn}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1ppykxa7mn}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/propose/0}","proposer":"pc1ppykxa7mn7m4wcxp4ye979wkpv8c60tq64kpk0f","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 456A808E8DCA ๐Ÿ‘ค pc1ppykxa7mn}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 0/0/new-height/0}","duration":"14.930030729s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/propose/0}","proposer":"pc1p6n94lznwqdv59up03dduwrgn95r36sgjwyssye","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/propose/0}","proposer":"pc1p0z372vx2748rwaxgl6c6q67tv0tnzs304nq38x","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ DA7779C836BC ๐Ÿ‘ค pc1p6n94lznw ๐Ÿ’ป 4ACD91468E66 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"expired round"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 0/0/new-height/0}","duration":"24.841354345s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/propose/0}","proposer":"pc1pa9d6awt8sl9rjm4wdkzm6se37zqt59ntg036s3","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"invalid height"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 0/0/new-height/0}","duration":"44.705499747s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/propose/0}","proposer":"pc1p7jfz6kzhntdm0dekargnfs9tzvx3a8s8f8mfug","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","duration":"30m0s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","duration":"1h0m0s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ A84F0D128305 ๐Ÿ‘ค pc1p7jfz6kzh ๐Ÿ’ป E8D93963A36D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ A84F0D128305 ๐Ÿ‘ค pc1p72j32e8t}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 8C26CB9D15AC ๐Ÿ‘ค pc1p7jfz6kzh ๐Ÿ’ป E8D93963A36D ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:05+03:30","message":"this round has proposal"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 0/0/new-height/0}","duration":"999.999629ms","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","duration":"999.999592ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","time":"2023-09-06T10:25:05+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","time":"2023-09-06T10:25:05+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","duration":"999.999688ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","duration":"999.999808ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 0/0/new-height/0}","duration":"14.570268691s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/propose/0}","proposer":"pc1p7awh06j0aj8llkthkhp4pe3tkk0fss78x32l88","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ CC31B96E3945 ๐Ÿ‘ค pc1p7awh06j0 ๐Ÿ’ป 8CAAE6A1B953 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ CC31B96E3945 ๐Ÿ‘ค pc1p7awh06j0}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/32767/PREPARE โŒ˜ 6DB18A14CF0A ๐Ÿ‘ค pc1pcp8hte7z}","time":"2023-09-06T10:25:05+03:30","message":"vote round number exceeding the round limit"} +{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/32767/PRECOMMIT โŒ˜ 42E57CAAE229 ๐Ÿ‘ค pc1pcp8hte7z}","time":"2023-09-06T10:25:05+03:30","message":"vote round number exceeding the round limit"} +{"level":"error","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/0/PRE-VOTE/32767/1 โŒ˜ 780798773746 ๐Ÿ‘ค pc1pcp8hte7z}","err":"invalid justification: JustInitOne, reason: invalid pre-vote justification","time":"2023-09-06T10:25:05+03:30","message":"error on adding a cp vote"} +{"level":"error","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/0/MAIN-VOTE/32767/1 โŒ˜ D3B1148C04A4 ๐Ÿ‘ค pc1pcp8hte7z}","err":"invalid justification: JustInitOne, reason: invalid main-vote justification","time":"2023-09-06T10:25:05+03:30","message":"error on adding a cp vote"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 0/0/new-height/0}","duration":"14.548702942s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/propose/0}","proposer":"pc1pyclgvz7p59l70pkfv8kqp6wtcvpqdlrt59jpll","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 18C97CEDBDBB ๐Ÿ‘ค pc1pyclgvz7p ๐Ÿ’ป C904A6D27918 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 18C97CEDBDBB ๐Ÿ‘ค pc1pyclgvz7p}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","proposal":"{1/3 ๐Ÿ—ƒ {โŒ˜ FC0691DBB61E ๐Ÿ‘ค pc1pmaqwg46y ๐Ÿ’ป C904A6D27918 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal round number exceeding the round limit"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 0/0/new-height/0}","duration":"24.495583265s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 0/0/new-height/0}","duration":"24.495008604s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 0/0/new-height/0}","duration":"24.484602438s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 0/0/new-height/0}","duration":"24.483925717s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/propose/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999629ms@ 0/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999629ms@ 0/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999592ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999592ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999808ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999808ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999688ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999688ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"this round has proposal"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/new-height/0}","duration":"33.241361273s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/new-height/0}","duration":"33.227494782s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/new-height/0}","duration":"33.215522532s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/new-height/0}","duration":"33.20102122s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 0/0/new-height/0}","duration":"23.146956565s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 0/0/new-height/0}","duration":"23.146596128s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 0/0/new-height/0}","duration":"23.137541701s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 0/0/new-height/0}","duration":"23.134835094s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:07+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:07+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","hash":"E80385900B53","time":"2023-09-06T10:25:07+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:07+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:07+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/propose/2}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"this round has proposal"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","duration":"31.762291044s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/new-height/0}","duration":"31.748273759s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/new-height/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/new-height/0}","duration":"31.718054727s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/new-height/0}","duration":"31.69613825s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/new-height/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/new-height/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 0/0/new-height/0}","duration":"21.604319744s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 0/0/new-height/0}","duration":"21.60374773s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 0/0/new-height/0}","duration":"21.595104672s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 0/0/new-height/0}","duration":"21.59467165s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/0}","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","duration":"30.82493979s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","duration":"30.809124811s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/2}","duration":"30.684642942s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/new-height/2}","duration":"30.671017139s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 0/0/new-height/0}","duration":"20.545046892s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 0/0/new-height/0}","duration":"20.544653575s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 0/0/new-height/0}","duration":"20.535426834s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 0/0/new-height/0}","duration":"20.535028437s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","hash":"866B09282E3A","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/0}","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:09+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/2}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/2}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/2}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","duration":"29.623409994s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","duration":"29.607085872s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","duration":"29.506341332s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","duration":"29.489311486s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 0/0/new-height/0}","duration":"29.278236685s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 0/0/new-height/0}","duration":"29.27787148s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 0/0/new-height/0}","duration":"29.26937311s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 0/0/new-height/0}","duration":"29.268989075s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","hash":"C7551573EF8F","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","hash":"C7551573EF8F","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","duration":"38.433313364s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","duration":"38.405117427s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","duration":"38.362533536s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","duration":"38.349013836s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 0/0/new-height/0}","duration":"28.081731899s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 0/0/new-height/0}","duration":"28.081109084s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 0/0/new-height/0}","duration":"28.071558298s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 0/0/new-height/0}","duration":"28.070929057s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/precommit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 64882A6AE62F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/commit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/new-height/0}","duration":"37.439611531s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 64882A6AE62F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/commit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/new-height/0}","duration":"37.421225686s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/precommit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 64882A6AE62F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/commit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/new-height/0}","duration":"37.409683793s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 0/0/new-height/0}","duration":"27.326189195s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 0/0/new-height/0}","duration":"27.325789065s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 0/0/new-height/0}","duration":"27.31680892s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 0/0/new-height/0}","duration":"27.316432601s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/new-height/0}","duration":"36.822749221s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","duration":"36.80798452s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/new-height/0}","duration":"36.789097381s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","duration":"36.774376524s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/new-height/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 0/0/new-height/0}","duration":"26.674449801s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 0/0/new-height/0}","duration":"26.673988841s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 0/0/new-height/0}","duration":"26.665117872s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 0/0/new-height/0}","duration":"26.66467244s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/propose/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"this round has proposal"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/new-height/0}","duration":"35.766763921s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/new-height/0}","duration":"35.751130556s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/new-height/0}","duration":"35.730074932s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/new-height/0}","duration":"35.710256866s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 0/0/new-height/0}","duration":"25.634990557s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 0/0/new-height/0}","duration":"25.633728605s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 0/0/new-height/0}","duration":"25.62472532s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 0/0/new-height/0}","duration":"25.624349583s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/0}","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:14+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:14+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:14+03:30","message":"cp: all main-votes are abstain"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:14+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:14+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","duration":"34.850575403s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","duration":"34.840833398s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","duration":"34.784096898s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","duration":"34.767777575s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 0/0/new-height/0}","duration":"24.593892645s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 0/0/new-height/0}","duration":"24.5935659s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 0/0/new-height/0}","duration":"24.585262133s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 0/0/new-height/0}","duration":"24.584894258s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/precommit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 00A62208855E ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/commit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/new-height/0}","duration":"34.076731365s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 00A62208855E ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/commit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/new-height/0}","duration":"34.039315201s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/precommit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 00A62208855E ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/commit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/new-height/0}","duration":"34.025233237s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 0/0/new-height/0}","duration":"23.941013744s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 0/0/new-height/0}","duration":"23.940342967s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 0/0/new-height/0}","duration":"23.930688871s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 0/0/new-height/0}","duration":"23.929910841s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/precommit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 477A597FA512 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/commit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/new-height/0}","duration":"33.51205112s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 477A597FA512 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/commit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/new-height/0}","duration":"33.485907491s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 477A597FA512 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/commit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/new-height/0}","duration":"33.476523577s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 0/0/new-height/0}","duration":"23.431241621s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 0/0/new-height/0}","duration":"23.43099566s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 0/0/new-height/0}","duration":"23.425976108s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 0/0/new-height/0}","duration":"23.425731866s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/new-height/0}","duration":"33.034936789s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/new-height/0}","duration":"33.027404418s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/new-height/0}","duration":"33.018036268s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/new-height/0}","duration":"33.005463866s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 0/0/new-height/0}","duration":"22.962376567s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 0/0/new-height/0}","duration":"22.962078129s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 0/0/new-height/0}","duration":"22.956236817s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 0/0/new-height/0}","duration":"22.955990539s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","hash":"C4AB12C6226B","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/precommit/0}","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/precommit/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:17+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:17+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:17+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/propose/2}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","duration":"32.454862604s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","duration":"32.447266914s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/new-height/0}","duration":"32.402687043s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/new-height/0}","duration":"32.395066265s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 0/0/new-height/0}","duration":"22.346137233s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 0/0/new-height/0}","duration":"22.345906305s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 0/0/new-height/0}","duration":"22.340789124s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 0/0/new-height/0}","duration":"22.34054224s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/new-height/0}","duration":"31.959959608s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/new-height/0}","duration":"31.948498827s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/new-height/0}","duration":"31.938949236s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/new-height/0}","duration":"31.931292285s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 0/0/new-height/0}","duration":"1m11.761106951s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 0/0/new-height/0}","duration":"1m11.760802351s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","ticker":"0s@ 7/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","ticker":"0s@ 7/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 0/0/new-height/0}","duration":"1m11.743546175s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/propose/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"this round has proposal"} +{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","hash":"639E7ECFA3F5","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 0/0/new-height/0}","duration":"1m11.728379558s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","ticker":"0s@ 7/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:decide/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:pre-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:pre-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:pre-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"warn","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","prepared":"639E7ECFA3F5","roundProposal":"18D5D6F4384B","time":"2023-09-06T10:25:18+03:30","message":"double proposal detected"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/propose/1}","proposer":"pc1pfytmga8ezlznqv28gf6kugvxndfstnzl77vnvz","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","duration":"1h0m0s","height":7,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","duration":"2h0m0s","height":7,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","ticker":"0s@ 7/1/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:pre-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/propose/1}","proposer":"pc1pfytmga8ezlznqv28gf6kugvxndfstnzl77vnvz","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","duration":"1h0m0s","height":7,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","duration":"2h0m0s","height":7,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/propose/1}","proposer":"pc1pfytmga8ezlznqv28gf6kugvxndfstnzl77vnvz","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/propose/1}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","duration":"1h0m0s","height":7,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","duration":"2h0m0s","height":7,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"this round has proposal"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","ticker":"0s@ 7/1/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:pre-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:pre-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:pre-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:decide/0}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:pre-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:pre-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/propose/1}","proposer":"pc1p035y2uzevu7xkdzshnhhl3yv0jp4m9zun05e7w","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/propose/1}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","duration":"1h30m0s","height":7,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","duration":"3h0m0s","height":7,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/propose/1}","proposer":"pc1p035y2uzevu7xkdzshnhhl3yv0jp4m9zun05e7w","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","duration":"1h30m0s","height":7,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","duration":"3h0m0s","height":7,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/propose/1}","proposer":"pc1p035y2uzevu7xkdzshnhhl3yv0jp4m9zun05e7w","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","duration":"1h30m0s","height":7,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","duration":"3h0m0s","height":7,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"this round has proposal"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/precommit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#7 โŒ˜ B09D4D0B3612 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}","round":2,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/commit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/new-height/0}","duration":"1m21.314124568s","height":7,"round":2,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/precommit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#7 โŒ˜ B09D4D0B3612 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}","round":2,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/commit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/new-height/0}","duration":"1m21.304480238s","height":7,"round":2,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#7 โŒ˜ B09D4D0B3612 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}","round":2,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/commit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/new-height/0}","duration":"1m21.294837504s","height":7,"round":2,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 0/0/new-height/0}","duration":"11.284895289s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/propose/0}","proposer":"pc1pfq7ew0qnew5r228lgmq6yz2mw37xgwxyrhuwv2","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","ticker":"0s@ 1/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/cp:pre-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prvhtnkhz}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 0/0/new-height/0}","duration":"21.254787095s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/propose/0}","proposer":"pc1prf5v57yeck4x3tyamufzqse65rwxajv94nr8u9","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfqk2dvjq}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 0A7EEF3D8A70 ๐Ÿ‘ค pc1prf5v57ye ๐Ÿ’ป 35C1FC3BE860 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 0/0/new-height/0}","duration":"11.235996562s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/propose/0}","proposer":"pc1p650ef8j6mmgm7mntxjuu95htp2f3lqc5rtultt","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","ticker":"0s@ 1/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:pre-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","vote":"{1/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:decide/0}","vote":"{1/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:decide/0}","vote":"{1/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:pre-vote/1}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/propose/1}","proposer":"pc1pm7s3vje8ka0vd2vyv6xe03vd27d3ye46es027q","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 0/0/new-height/0}","duration":"21.171151009s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/propose/0}","proposer":"pc1p0l9ejhxp38ty69e856gcvjxsytpjn8dzp3pelc","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/propose/0}","proposer":"pc1p604xf3xw3qtqdh5rdhp9fv3lpxyqddl3uhg76t","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p604xf3xw}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","hash":"3D141307FAF9","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","v":"0","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:decide/0}","value":0,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:pre-vote/1}","b":"0","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for zero"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","hash":"3D141307FAF9","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/MAIN-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/MAIN-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/PRECOMMIT โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/PRECOMMIT โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 0/0/new-height/0}","duration":"11.105782038s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/propose/0}","proposer":"pc1pppxmrk0jdnw6fqsk5xp9ywfdvn9pdv8zujp7zx","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 47F57A7D6E40 ๐Ÿ‘ค pc1pppxmrk0j ๐Ÿ’ป C44559EF26DA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 47F57A7D6E40 ๐Ÿ‘ค pc1pppxmrk0j}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 0/0/new-height/0}","duration":"11.092618931s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/propose/0}","proposer":"pc1p37alev6meveya622rc5mx0quxr9kn278chtmck","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ E19B6B34AC0B ๐Ÿ‘ค pc1p37alev6m ๐Ÿ’ป 1F00AA9F6F8C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ E19B6B34AC0B ๐Ÿ‘ค pc1p37alev6m}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 0/0/new-height/0}","duration":"11.079045662s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/propose/0}","proposer":"pc1pnd9dtvl288u9lqm98dr0uu25psd66cuy69uwnh","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ A01086E96BCF ๐Ÿ‘ค pc1pnd9dtvl2 ๐Ÿ’ป 5A1B8855277E ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ A01086E96BCF ๐Ÿ‘ค pc1pnd9dtvl2}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 0/0/new-height/0}","duration":"11.064304448s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/propose/0}","proposer":"pc1p42z3c9lk6se7edl6aaa6uv0e80m9r0q4fac380","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 3022F2FDD520 ๐Ÿ‘ค pc1p42z3c9lk ๐Ÿ’ป 347B138F74EF ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 3022F2FDD520 ๐Ÿ‘ค pc1p42z3c9lk}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 0/0/new-height/0}","duration":"11.051147999s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/propose/0}","proposer":"pc1p00qahedfpnjjr2s73npmk55rsc02vygjev4nvf","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ FB84226A3348 ๐Ÿ‘ค pc1p00qahedf ๐Ÿ’ป 3B1E1F683340 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ FB84226A3348 ๐Ÿ‘ค pc1p00qahedf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 0/0/new-height/0}","duration":"11.037216674s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/propose/0}","proposer":"pc1phxl2a2j2n9k9hfxlhwnt9lfsj3a4ct8jmhn858","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 7836CB6607B1 ๐Ÿ‘ค pc1phxl2a2j2 ๐Ÿ’ป BCA303044378 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 7836CB6607B1 ๐Ÿ‘ค pc1phxl2a2j2}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 0/0/new-height/0}","duration":"11.018711099s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/propose/0}","proposer":"pc1pezrkggc8vrhn2747djl2gr59xlprnxkxchsafr","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/propose/0}","proposer":"pc1p264mulfrykud7svumgsxqcyegtkvtl06y2jzp4","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 0/0/new-height/0}","duration":"20.965251664s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/propose/0}","proposer":"pc1pen482pr2q5h0m2zfpxj7rakg5u7pjp0dvyh2uq","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/new-height/0}","duration":"20.96501384s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/propose/0}","proposer":"pc1pen482pr2q5h0m2zfpxj7rakg5u7pjp0dvyh2uq","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 0/0/new-height/0}","duration":"20.92358853s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/propose/0}","proposer":"pc1pn6avjnt6qz8dr6wxj6vyjfgf6vqe50hjpxw5fw","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6 ๐Ÿ’ป 2B51EECC08E7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pke9kkpw0}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pccfpwrha}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","hash":"AAF81964EA49","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pke9kkpw0}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pccfpwrha}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","hash":"AAF81964EA49","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ AAF81964EA49 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6 ๐Ÿ’ป 2B51EECC08E7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/commit/0}","hash":"AAF81964EA49","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/new-height/0}","duration":"30.895438486s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pgw9tl9nw}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/propose/0}","proposer":"pc1pccfpwrha0twpmwnqcrnklwc32m9wkhg6xqq9mz","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/prepare/0}","duration":"30m0s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/prepare/0}","duration":"1h0m0s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3,4],"state_root":"B38DCE7636A4","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"{pc1p66ucr2su 0/0/new-height/0}","duration":"1.880758311s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pnqc7e24e 0/0/new-height/0}","duration":"1.880706092s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8llw4rlc 0/0/new-height/0}","duration":"1.880661725s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pdcga9ln5 0/0/new-height/0}","duration":"1.880617245s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1puh0z9k4p 0/0/new-height/0}","duration":"1.880574842s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p66ucr2su 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p66ucr2su 1/0/propose/0}","proposer":"pc1p66ucr2sukstayx45lf335wy2x2c88s3fhgc26q","time":"2023-09-06T10:25:19+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p66ucr2su 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ AF01C21B6EF7 ๐Ÿ‘ค pc1p66ucr2su ๐Ÿ’ป B38DCE7636A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pnqc7e24e 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8llw4rlc 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pdcga9ln5 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1puh0z9k4p 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ AF01C21B6EF7 ๐Ÿ‘ค pc1p66ucr2su}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p8llw4rlc 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/propose/0}","proposer":"pc1p66ucr2sukstayx45lf335wy2x2c88s3fhgc26q","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ AF01C21B6EF7 ๐Ÿ‘ค pc1p66ucr2su}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 86B9F2E26779 ๐Ÿ‘ค pc1p7q9z8hwn}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 86B9F2E26779 ๐Ÿ‘ค pc1p7q9z8hwn}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 1D23B9AAB028 ๐Ÿ‘ค pc1p8llw4rlc ๐Ÿ’ป B38DCE7636A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 1D23B9AAB028 ๐Ÿ‘ค pc1p8llw4rlc ๐Ÿ’ป B38DCE7636A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 0/0/new-height/0}","duration":"20.83712757s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/propose/0}","proposer":"pc1p3qz9xmta0g0dyxn5uer5y09gfhswyq6rkag6kn","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p7ndju928}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p3qz9xmta}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1pulrzsqjy}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","hash":"5014392B1467","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p7ndju928}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p3qz9xmta}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1pulrzsqjy}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","hash":"5014392B1467","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","hash":"5014392B1467","time":"2023-09-06T10:25:19+03:30","message":"query for a decided proposal"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 0/0/new-height/0}","duration":"20.775014s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/propose/0}","proposer":"pc1p2a9620j3cwysvevp5gk3k0vzfzp3sskf507kdc","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1pda2r7elc}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1p7uvwamjj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1p2a9620j3}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1pgy2047mv}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","hash":"AB8638E4FD92","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"warn","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","roundProposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","prepared":"ab8638e4fd92736072149d8fb99195774f33607ec214c140067841095ef9a484","time":"2023-09-06T10:25:19+03:30","message":"double proposal detected"} +{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"warn","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","roundProposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","prepared":"ab8638e4fd92736072149d8fb99195774f33607ec214c140067841095ef9a484","time":"2023-09-06T10:25:19+03:30","message":"double proposal detected"} +{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1pda2r7elc}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 0/0/new-height/0}","duration":"20.692750712s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/propose/0}","proposer":"pc1pmuslc9x0r5t7s59w9thpx52vax2r43v8dv4neu","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1plq0kveyj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1pmuslc9x0}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1p9epalvrg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","hash":"98465BBDE9C2","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plq0kveyj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmuslc9x0}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1p5uhymlss}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:19+03:30","message":"cp: no-quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1p5uhymlss}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 0/0/new-height/0}","duration":"10.667836861s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/propose/0}","proposer":"pc1p5xfpm8wndj3ant4vwgyqretjvtacnh2xp79mn7","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","ticker":"0s@ 1/0/change-proposer","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} +{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/cp:pre-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plugw72zx}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 0/0/new-height/0}","duration":"20.629320272s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/propose/0}","proposer":"pc1plrxy0hzylelped6knsvp0vk0r3jysch8y7jxj8","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/propose/0}","proposer":"pc1pedvlvv7sqag4xma8ww3nrdkc5a9s9uv53rmrp2","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","ticker":"0s@ 2/1/query-proposal","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 0/0/new-height/0}","duration":"20.599953406s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/propose/0}","proposer":"pc1p2rzctv30l5tmkla5f35822p3286ca8ljytq5ld","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9esmcya0}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2rzctv30}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"changing proposer started"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pncg234v3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:19+03:30","message":"cp: quorum for pre-votes"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pncg234v3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A527D966BFF0 ๐Ÿ‘ค pc1p2rzctv30 ๐Ÿ’ป D51F8C03D8AA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 0/0/new-height/0}","duration":"20.559392143s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/propose/0}","proposer":"pc1p3k67dl7042xdle8lm4p4skfudjuhshhzyl0m98","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/propose/0}","proposer":"pc1p7uuugffdnpjxy7942xul44lgt79q5psuhqde8c","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","ticker":"0s@ 2/1/query-proposal","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 0/0/new-height/0}","duration":"10.54860863s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/propose/0}","proposer":"pc1pzwcsf3st35ak8q7zs69y7rvh0dtcldzzyxqjgm","time":"2023-09-06T10:25:19+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 139A91188DCF ๐Ÿ‘ค pc1pzwcsf3st ๐Ÿ’ป 4AD7F3393531 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 139A91188DCF ๐Ÿ‘ค pc1pzwcsf3st}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 0/0/new-height/0}","duration":"10.535683949s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/propose/0}","proposer":"pc1pjvmadvll08dx3aax3z2hls5mzy0d62u73kfqm3","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"warn","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ E064F51ED129 ๐Ÿ‘ค pc1plfafx5x4 ๐Ÿ’ป 41CAA6FA0B27 ๐Ÿ“จ 5}}","err":"invalid proposal: no signature","time":"2023-09-06T10:25:19+03:30","message":"proposal has invalid signature"} +{"level":"warn","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ E064F51ED129 ๐Ÿ‘ค pc1plfafx5x4 ๐Ÿ’ป 41CAA6FA0B27 ๐Ÿ“จ 5}}","err":"invalid address","time":"2023-09-06T10:25:19+03:30","message":"proposal has invalid signature"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 0/0/new-height/0}","duration":"10.490014826s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/propose/0}","proposer":"pc1pxk5p8hr6wr403gcdz6n27dazuh5lj6yrhnq7c4","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/propose/0}","proposer":"pc1phelkqruqk2ass3r5ft9xd55tgat0q6gfku3jz9","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/propose/0}","proposer":"pc1pz3hrkjvtc6wrwq2jhpjkuwg66q8ykz9tkrj4pp","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","duration":"1h30m0s","height":1,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","duration":"3h0m0s","height":1,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"warn","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","proposal":"{1/2 ๐Ÿ—ƒ {โŒ˜ 3229EB95CB24 ๐Ÿ‘ค pc1pz3hrkjvt ๐Ÿ’ป EE68157E460E ๐Ÿ“จ 5}}","err":"invalid block: state root is not same as we expected, expected a3ae32b968c24f1d83cd2bafb02d0654b473a3af95c56807e0703e88c90a18f7, got ee68157e460e627de1f296f56d9b4a6663d633572ddc26685090a0cc8cd85b03","time":"2023-09-06T10:25:19+03:30","message":"invalid block"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 0/0/new-height/0}","duration":"10.468138416s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/propose/0}","proposer":"pc1pjgq4lraydhx0fuzeaxx6cuvyz5z4t67j5rgpys","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ CD86C0F2AA11 ๐Ÿ‘ค pc1p0ezrvjgm ๐Ÿ’ป D486B2A11623 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:19+03:30","message":"invalid height"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 0/0/new-height/0}","duration":"10.455754844s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/propose/0}","proposer":"pc1plfte3340mq5ralqg4g8dyhwjf5d8ug496vedu0","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"block is committed for this height"} +{"level":"info","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1pva2zwk67}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 9140A947C45F ๐Ÿ‘ค pc1p2f69lan7 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"block is committed for this height"} +{"level":"warn","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 9140A947C45F ๐Ÿ‘ค pc1p2f69lan7 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal is not for the committed block"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"trace","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 0/0/new-height/0}","duration":"10.424803126s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/propose/0}","proposer":"pc1pyysnat76cgy732y5j7ke8ylgfkjw456p8jekxw","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pyysnat76}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pwhyty2pj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","ticker":"0s@ 1/0/query-proposal","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} +{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pyysnat76 ๐Ÿ’ป 228F5C1B99D7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pea8dr9n3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","hash":"B193D86A72E7","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/precommit/0}","vote":"{1/0/PRECOMMIT โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pea8dr9n3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"trace","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 0/0/new-height/0}","duration":"20.379179245s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} +{"level":"debug","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/propose/0}","proposer":"pc1phhfuklz9kxygpcs4vhf0se5ud5tg4khnl69h7w","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 270BFB407AEA ๐Ÿ‘ค pc1pu6450ecl ๐Ÿ’ป 0611A33A8586 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"debug","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} diff --git a/network/logs/pactus.log b/network/logs/pactus.log new file mode 100644 index 000000000..58887b7f9 --- /dev/null +++ b/network/logs/pactus.log @@ -0,0 +1,253 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWJbaNj9Q6FBZy49UGZYt1hQrqVR5eKyxJn9PqFe3utCXM","address":[],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:06+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:06+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:06+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/40815","/ip4/127.0.0.1/udp/40125/quic","/ip4/127.0.0.1/udp/40125/quic-v1","/ip4/127.0.0.1/udp/46562/quic-v1/webtransport/certhash/uEiAZ3RsF1l6N_3mkq37O83seX_RMfG5flHTtrowaSC--BQ/certhash/uEiAjF3Z8runPIDiEAegz-ut7xG4dD8FEU-GvY6sesyFDdA","/ip4/192.168.1.6/tcp/40815","/ip4/192.168.1.6/udp/40125/quic","/ip4/192.168.1.6/udp/40125/quic-v1","/ip4/192.168.1.6/udp/46562/quic-v1/webtransport/certhash/uEiAZ3RsF1l6N_3mkq37O83seX_RMfG5flHTtrowaSC--BQ/certhash/uEiAjF3Z8runPIDiEAegz-ut7xG4dD8FEU-GvY6sesyFDdA","/ip6/::1/tcp/42047","/ip6/::1/udp/45678/quic-v1/webtransport/certhash/uEiAZ3RsF1l6N_3mkq37O83seX_RMfG5flHTtrowaSC--BQ/certhash/uEiAjF3Z8runPIDiEAegz-ut7xG4dD8FEU-GvY6sesyFDdA","/ip6/::1/udp/47020/quic","/ip6/::1/udp/47020/quic-v1"],"time":"2023-09-06T10:25:06+03:30","message":"network started"} +{"level":"debug","_network":"{0}","topic":"consensus","time":"2023-09-06T10:25:06+03:30","message":"publishing new message"} +{"level":"debug","_network":"{0}","topic":"consensus","time":"2023-09-06T10:25:06+03:30","message":"publishing new message"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:08+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:08+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:08+03:30","message":"expanding the connections"} +yGkhg4jFtCZonwaW","address":[],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","topic":"invalid","time":"2023-09-06T10:25:06+03:30","message":"publishing new message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","address":["/ip4/127.0.0.1/tcp/0"],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","address":["/ip4/127.0.0.1/tcp/0"],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:06+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:06+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:06+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/32827"],"time":"2023-09-06T10:25:06+03:30","message":"network started"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/34581"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +{"level":"debug","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/34581"],"id":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"connecting to new peer"} +{"level":"debug","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/32827"],"id":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"connecting to new peer"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"trace","_network":"{1}","to":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"sending stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"receiving stream"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWK2sjbHAWKrxw2ZbyZPa4Q2zJAmRPME5FcQZvnmq5FbAu","address":[],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/43581","/ip4/127.0.0.1/udp/34315/quic","/ip4/127.0.0.1/udp/34315/quic-v1","/ip4/127.0.0.1/udp/40741/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","/ip4/192.168.1.6/tcp/43581","/ip4/192.168.1.6/udp/34315/quic","/ip4/192.168.1.6/udp/34315/quic-v1","/ip4/192.168.1.6/udp/40741/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","/ip6/::1/tcp/44551","/ip6/::1/udp/37268/quic","/ip6/::1/udp/37268/quic-v1","/ip6/::1/udp/48845/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:07+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/tcp/44551","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/udp/48845/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/udp/40741/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/udp/37268/quic-v1","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/udp/37268/quic","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/tcp/43581","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/udp/34315/quic","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/udp/34315/quic-v1","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","address":["/ip4/127.0.0.1/tcp/15794","/ip6/::1/tcp/15794"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/15794","/ip6/::1/tcp/15794"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} +{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/33159","/ip6/::1/tcp/44125"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWCHEXjXnmpftxuQ7uYthbCw23NqqC24iKnWWUwa1rt7Nn","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{2}","addr":["/ip4/127.0.0.1/tcp/44601","/ip6/::1/tcp/38933"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","_network":"{1}","id":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} +{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} +{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"debug","_network":"{2}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} +{"level":"info","_network":"{2}","addr":["/ip4/127.0.0.1/tcp/41991","/ip6/::1/tcp/36647"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{4}","PeerID":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} +{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/33567","/ip6/::1/tcp/34057"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:08+03:30","message":"check connectivity"} +{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:08+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:08+03:30","message":"expanding the connections"} +{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"debug","_network":"{4}","peers":4,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"debug","_network":"{2}","peers":2,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{2}","count":2,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{2}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"debug","_network":"{2}","peers":2,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{2}","count":2,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{2}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{1}","topic":"general","time":"2023-09-06T10:25:09+03:30","message":"publishing new message"} +{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"debug","_network":"{4}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{1}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{1}","topic":"consensus","time":"2023-09-06T10:25:09+03:30","message":"publishing new message"} +{"level":"debug","_network":"{4}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} +{"level":"trace","_network":"{2}","to":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"debug","_network":"{2}","pid":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} +{"level":"warn","_network":"{2}","pid":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","err":"failed to dial 12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz:\n * [/ip4/127.0.0.1/tcp/44883/p2p/12D3KooWCHEXjXnmpftxuQ7uYthbCw23NqqC24iKnWWUwa1rt7Nn/p2p-circuit] error opening relay circuit: NO_RESERVATION (204)","time":"2023-09-06T10:25:09+03:30","message":"unable to connect to peer using relay"} +{"level":"trace","_network":"{4}","to":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} +{"level":"trace","_network":"{2}","to":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"debug","_network":"{2}","pid":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{3}","pid":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:09+03:30","message":"connected to peer using relay"} +{"level":"debug","_network":"{3}","from":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} +{"level":"trace","_network":"{3}","to":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"debug","_network":"{3}","pid":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} +{"level":"warn","_network":"{3}","pid":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","err":"failed to dial 12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1:\n * [/ip4/127.0.0.1/tcp/44883/p2p/12D3KooWCHEXjXnmpftxuQ7uYthbCw23NqqC24iKnWWUwa1rt7Nn/p2p-circuit] error opening relay circuit: NO_RESERVATION (204)","time":"2023-09-06T10:25:09+03:30","message":"unable to connect to peer using relay"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/tcp/44125","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/33159","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"trace","_network":"{3}","to":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"debug","_network":"{3}","pid":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","address":["/ip4/127.0.0.1/tcp/17548"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/17548"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","address":["/ip4/127.0.0.1/tcp/0"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","peer":"{12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT: [/ip4/127.0.0.1/tcp/17548]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/39831"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","address":["/ip4/127.0.0.1/udp/19119/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/udp/19119/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","address":["/ip4/127.0.0.1/udp/0/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","peer":"{12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U: [/ip4/127.0.0.1/udp/19119/quic]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/udp/43193/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","address":["/ip6/::1/tcp/18336"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip6/::1/tcp/18336"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","address":["/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","peer":"{12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C: [/ip6/::1/tcp/18336]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{1}","addr":["/ip6/::1/tcp/37887"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","address":["/ip6/::1/udp/10545/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip6/::1/udp/10545/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","address":["/ip6/::1/udp/0/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","peer":"{12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct: [/ip6/::1/udp/10545/quic]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} +{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} +{"level":"info","_network":"{1}","addr":["/ip6/::1/udp/49739/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} +{"level":"trace","_network":"{1}","to":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"trace","_network":"{1}","to":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"trace","_network":"{1}","to":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"trace","_network":"{1}","to":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/17548","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{1}","from":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/tcp/18336","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/39831","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/19119/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{1}","from":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} +{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/udp/10545/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/43193/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/udp/49739/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/tcp/37887","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} diff --git a/node/logs/pactus.log b/node/logs/pactus.log new file mode 100644 index 000000000..5b8c146a9 --- /dev/null +++ b/node/logs/pactus.log @@ -0,0 +1,10 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWJgMy3o8RtrMMeoM5FbU2jrQxjAzDeWa2rfFrNgjSMcmZ","address":["/ip4/0.0.0.0/tcp/21777","/ip6/::/tcp/21777"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} +{"level":"error","_network":"{0}","info":"{12D3KooWNYD4bB82YZRXv6oNyYPwc5ozabx2epv75ATV3D8VD3Mq: [/ip4/172.104.46.145/tcp/21777]}","err":"failed to dial 12D3KooWNYD4bB82YZRXv6oNyYPwc5ozabx2epv75ATV3D8VD3Mq:\n * [/ip4/172.104.46.145/tcp/21777] failed to negotiate security protocol: read tcp4 192.168.1.6:21777->172.104.46.145:21777: read: connection reset by peer","time":"2023-09-06T10:25:07+03:30","message":"error trying to connect to bootstrap node"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/21777","/ip4/192.168.1.6/tcp/21777","/ip6/::1/tcp/21777"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} +ry":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} diff --git a/state/logs/pactus.log b/state/logs/pactus.log new file mode 100644 index 000000000..e57fbb815 --- /dev/null +++ b/state/logs/pactus.log @@ -0,0 +1,545 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"7FC702A1111C","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ B0B640CE867D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B0B640CE867D ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป 7FC702A1111C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ CEE70159A002 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ CEE70159A002 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป A0105AE98433 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 9ECE04790DB1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9ECE04790DB1 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป 556F9E44734E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A87B07A9CB58 ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A888829B97F1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"debug","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ CA5C343E28CA ๐Ÿต cd2fb765 {Send ๐Ÿ’ธ pc1pq4fhln9y->pc1pmg580fvf 5397267528744}","err":"invalid fee: fee is wrong, expected: 1000000, got: 3730175728","time":"2023-09-06T10:25:07+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ AF6BE7F6FB4D ๐Ÿต caeced3e {Bond ๐Ÿ” pc1plf8z2fcr->pc1p90c7e6mc 868959254637}","err":"invalid fee: fee is wrong, expected: 1000000, got: 3218714564","time":"2023-09-06T10:25:07+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 65EAB3A3A81A ๐Ÿต 663b1f90 {Sortition ๐ŸŽฏ pc1p4uwah2sv}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:25:07+03:30","message":"found invalid transaction"} +{"level":"error","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ F0D699F2D1A5 ๐Ÿต a87b07a9 {Send ๐Ÿ’ธ 000000000000->pc1p3xqurjfp 1000000000}","time":"2023-09-06T10:25:07+03:30","message":"found duplicated subsidy transaction"} +{"level":"info","_state":"{#9 โŒ˜ 791313F25C83 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 791313F25C83 ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป 2E35F4537D49 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} + 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 9ECE04790DB1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9ECE04790DB1 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป 556F9E44734E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A87B07A9CB58 ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A888829B97F1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ 72D9161EC611 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 72D9161EC611 ๐Ÿ‘ค pc1p8ehtsarj ๐Ÿ’ป 40E3D6287998 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","height":2,"time":"2023-09-06T10:25:07+03:30","message":"unexpected block height"} +{"level":"info","_state":"{#1 โŒ˜ 0714CF81CF11 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 0714CF81CF11 ๐Ÿ‘ค pc1p5s0yn3h8 ๐Ÿ’ป 1602A1DACC6D ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:07+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"warn","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","err":"invalid block: certificate has invalid round, expected 0, got 1","time":"2023-09-06T10:25:08+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"error","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","tx":"{โŒ˜ DB88977570BD ๐Ÿต 09af635c {Send ๐Ÿ’ธ 000000000000->pc1pdkvkprqw 1000000000}","time":"2023-09-06T10:25:08+03:30","message":"found duplicated subsidy transaction"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 26CA24A0B441 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 26CA24A0B441 ๐Ÿ‘ค pc1pv7m8ccv5 ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 26CA24A0B441 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 26CA24A0B441 ๐Ÿ‘ค pc1pv7m8ccv5 ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 26CA24A0B441 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 26CA24A0B441 ๐Ÿ‘ค pc1pv7m8ccv5 ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 4C256F980422 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 4C256F980422 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 79A68BD34C85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 79A68BD34C85 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 8D11497BC6F9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 79A68BD34C85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 79A68BD34C85 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 8D11497BC6F9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 79A68BD34C85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 79A68BD34C85 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 8D11497BC6F9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"panic","_state":"{#2 โŒ˜ 4C256F980422 ๐Ÿ•ฃ 10.25.20}","our hash":"4c256f980422ba184f9902ed38be5f335dea31d0490a6c1e544f0e139a24f1b7","block hash":"26ca24a0b441d3d5159a0f5ba3d0b22f6a31a39d8f7fbe1d36b56a03edfdf8e0","time":"2023-09-06T10:25:08+03:30","message":"a possible fork is detected"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"debug","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"debug","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"debug","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"debug","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"debug","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"debug","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} +{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} +{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","committers":[4,0,1,2,3],"state_root":"1F2C165A7F24","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463664801s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463763575s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463815772s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463893442s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464006778s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464091984s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464143516s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464212542s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464266942s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} +{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} +{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} +{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} +{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"debug","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","committers":[0,1,2,3],"state_root":"3EECABB04C5A","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","_state":"{#6 โŒ˜ D43BC081ECE3 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ D43BC081ECE3 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 3EECABB04C5A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ D43BC081ECE3 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ D43BC081ECE3 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 3EECABB04C5A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","committers":[0,1,2,3],"state_root":"01920C6EDD05","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"10.228886378s","time":"2023-09-06T10:25:10+03:30","message":"it looks the last block had delay"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ DDA8EEEA5B28 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 37982E3D2078 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"certificate has an unexpected committers: [0 1 2 3 4]","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"certificate has an invalid signature: 8fd5f64f7fd63000adaded00182cd8b0d86ce7dcad1637fdd3d7a6fb0e1c91a1b29d044098d28aa56b1a8b68f4303534","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"invalid block: certificate has invalid round, expected 0, got 1","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"certificate height is invalid (expected 6 got 7)","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} +{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} +{"level":"info","_state":"{#2 โŒ˜ 844AD6679DD7 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 844AD6679DD7 ๐Ÿ‘ค pc1pwyr0r5aq ๐Ÿ’ป 3C10C6D8745A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} diff --git a/sync/firewall/logs/pactus.log b/sync/firewall/logs/pactus.log new file mode 100644 index 000000000..d27fc7d61 --- /dev/null +++ b/sync/firewall/logs/pactus.log @@ -0,0 +1,21 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"warn","err":"invalid message: invalid message: cbor: cannot unmarshal UTF-8 text string into Go value of type bundle._Bundle","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"warn","err":"invalid message: invalid message: EOF","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"warn","err":"invalid message: invalid round","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"warn","err":"invalid message: source is not same as initiator. source: QmcEAYwUfpYyp6t1jnRvk6pWwTP1rjUSZfgKogCexNCP2q, initiator: QmRAkDQr3PNhjWraJs9fmYc5VnoovzMNFSrDPDSoj1kGT5","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"warn","from":"Qmdyv2kRXY2KvxrDwHebk53g1d6f4z3XGsz1ZisMYDvsMV","time":"2023-09-06T10:25:11+03:30","message":"firewall: from peer banned"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"warn","err":"invalid message: source peer is banned: QmYpmJaw3rMPRXkGWsG8Egx2hPcW9xTGiRpXQ7y89ok4Wp","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"warn","err":"invalid message: source is not same as initiator. source: QmUma4weeMvSrwQEjtMT5VQxFJtVDRa3CDTEawLdev2aj3, initiator: QmQ3mCfLdDMqGk3ZRRVcF8m2dqLC9aVDzwnUGZokQnZsfQ","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"warn","err":"invalid message: source peer is banned: QmTbNXYhFRrL8eUuyvxKpoAAzi46Vpb6HEGvpW4UDsBRSW","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a stream bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"warn","err":"invalid message: invalid round","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"warn","err":"invalid message: source is not same as initiator. source: QmUJTS9ruJK3hJRiXMLCzLmNYy4Z4Prr9H9t4u3h6iR5y1, initiator: QmStKrVEDoUHEMKwqEjXTRNeE5hRHdx91Pfoe9ALHMn6mC","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} diff --git a/sync/logs/pactus.log b/sync/logs/pactus.log new file mode 100644 index 000000000..1d671818a --- /dev/null +++ b/sync/logs/pactus.log @@ -0,0 +1,412 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","bundle":"block-announce{โŒ˜ 23 7506B863C143}","time":"2023-09-06T10:25:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โŒ˜ 23 7506B863C143}","time":"2023-09-06T10:25:09+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","time":"2023-09-06T10:25:09+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:09+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","from":22,"count":23,"pid":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","time":"2023-09-06T10:25:09+03:30","message":"sending download request"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","bundle":"blocks-req{โš“ 0 22:44}","to":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","time":"2023-09-06T10:25:09+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","initiator":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","bundle":"block-announce{โŒ˜ 22 60E5A3A181E5}","time":"2023-09-06T10:25:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","message":"{โŒ˜ 22 60E5A3A181E5}","time":"2023-09-06T10:25:09+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 3 โ‡ˆ 23 โ†‘ 21}","height":22,"block":"{โŒ˜ 60E5A3A181E5 ๐Ÿ‘ค pc1pez5p7gd9 ๐Ÿ’ป 376911647F6A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:09+03:30","message":"committing block"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 3 โ‡ˆ 23 โ†‘ 22}","height":23,"block":"{โŒ˜ 7506B863C143 ๐Ÿ‘ค pc1pkkrlc2lr ๐Ÿ’ป 705F2C1F02E8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:09+03:30","message":"committing block"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 3 โ‡ˆ 23 โ†‘ 23}","time":"2023-09-06T10:25:09+03:30","message":"we have open session"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} +{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","time":"2023-09-06T10:25:10+03:30","message":"sending BlockAnnounce ignored. We are not in the committee"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 3A3F5C32C102}","time":"2023-09-06T10:25:10+03:30","message":"broadcasting new bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 30:30}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 30:30}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 rejected 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 1:2}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 1:2}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 rejected 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 10:33}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 10:33}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 rejected 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 20:30}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 20:30}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 more-blocks 20-30}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 no-more-blocks 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 21:31}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 21:31}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 more-blocks 21-31}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 synced 31-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 131:131}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 131:131}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","height":131,"time":"2023-09-06T10:25:11+03:30","message":"we don't have block at this height"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 synced 130-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","bundle":"blocks-req{โš“ 97 1:2}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 97 1:2}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 97 more-blocks 1-2}","to":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 97 no-more-blocks 0-0}","to":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","bundle":"blocks-req{โš“ 5 100:204}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 5 100:204}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} +{"level":"warn","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 5 100:204}","pid":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"we are busy"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 5 rejected 0-0}","to":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmZer2uxjxx2VbHZu9sCCn5y1jEoEXnZU7BzoPfkbLD4da","bundle":"blocks-res{โš“ 0 more-blocks 965453-965453}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 0 more-blocks 965453-965453}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksResponse message"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTZsfo99P2nRbof29ReBdVdi4pW8xo7zTq3rgvCqtiiLa","bundle":"blocks-res{โš“ 1 more-blocks 568681-568681}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 1 more-blocks 568681-568681}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksResponse message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","bundle":"blocks-res{โš“ 0 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 0 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} +{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","response":"rejected","time":"2023-09-06T10:25:12+03:30","message":"blocks request is rejected"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","session-id":0,"time":"2023-09-06T10:25:12+03:30","message":"session rejected, close session"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","bundle":"blocks-res{โš“ 1 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 1 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} +{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","response":"rejected","time":"2023-09-06T10:25:12+03:30","message":"blocks request is rejected"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","session-id":1,"time":"2023-09-06T10:25:12+03:30","message":"session rejected, close session"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","bundle":"blocks-res{โš“ 2 synced 22-22}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 2 synced 22-22}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 0 โ†‘ 21}","height":22,"block":"{โŒ˜ 3FE7AD059AD2 ๐Ÿ‘ค pc1p9ycvrcal ๐Ÿ’ป DA1614A43EAE ๐Ÿ“จ 5}","time":"2023-09-06T10:25:12+03:30","message":"committing block"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 0 โ†‘ 22}","session-id":2,"time":"2023-09-06T10:25:12+03:30","message":"peer informed us we are synced. close session"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmeLc2sTQeD4NVeroqviHh6grABsKB15jWQQ1VbfEaywkF","bundle":"blocks-res{โš“ 0 more-blocks 55136-55136}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 0 more-blocks 55136-55136}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmeLc2sTQeD4NVeroqviHh6grABsKB15jWQQ1VbfEaywkF","bundle":"blocks-res{โš“ 1 more-blocks 363854-363854}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 1 more-blocks 363854-363854}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 1 โ‡ˆ 0 โ†‘ 21}","session-id":1,"time":"2023-09-06T10:25:12+03:30","message":"peer responding us. keep session open"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"hello{test 0}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","Ack":false,"time":"2023-09-06T10:25:14+03:30","message":"Sending Hello message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"hello{test 0}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{test 0}","time":"2023-09-06T10:25:14+03:30","message":"parsing Hello message"} +{"level":"debug","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","pid":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","moniker":"test","flags":256,"time":"2023-09-06T10:25:14+03:30","message":"updating peer info"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"hello{test 100 ack}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","Ack":true,"time":"2023-09-06T10:25:14+03:30","message":"Sending Hello message"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"hello{test 100 ack}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{test 100 ack}","time":"2023-09-06T10:25:14+03:30","message":"parsing Hello message"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","moniker":"test","flags":257,"time":"2023-09-06T10:25:14+03:30","message":"updating peer info"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","time":"2023-09-06T10:25:14+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","from":0,"time":"2023-09-06T10:25:14+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","from":1,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending download request"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","bundle":"blocks-req{โš“ 0 1:23}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 0 1:23}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 0 1:23}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 more-blocks 1-11}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 more-blocks 1-11}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","message":"{โš“ 0 more-blocks 1-11}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 more-blocks 12-22}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 more-blocks 23-23}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 0}","height":1,"block":"{โŒ˜ 6DA56A768B50 ๐Ÿ‘ค pc1pjqr3sjd7 ๐Ÿ’ป 91EC164206E3 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 1}","height":2,"block":"{โŒ˜ 2E95EFD32A66 ๐Ÿ‘ค pc1pqt8enlcx ๐Ÿ’ป C9DC75DAC17E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 2}","height":3,"block":"{โŒ˜ 956C68E88333 ๐Ÿ‘ค pc1ptha69v44 ๐Ÿ’ป 9D098EB85A3A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 3}","height":4,"block":"{โŒ˜ AA031F22EF21 ๐Ÿ‘ค pc1p4r0hy5pc ๐Ÿ’ป 9FAED59CCD34 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 4}","height":5,"block":"{โŒ˜ 721205C434F3 ๐Ÿ‘ค pc1pkukgrzgc ๐Ÿ’ป B39DE963A261 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 5}","height":6,"block":"{โŒ˜ ED296BDD44AB ๐Ÿ‘ค pc1phmp68p5v ๐Ÿ’ป 4EF2E382041B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 6}","height":7,"block":"{โŒ˜ ED67C117BE48 ๐Ÿ‘ค pc1pv09h00xd ๐Ÿ’ป B84A56448103 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 7}","height":8,"block":"{โŒ˜ B55D5364A9C9 ๐Ÿ‘ค pc1pmlud4zkn ๐Ÿ’ป 650CC1B585DF ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 8}","height":9,"block":"{โŒ˜ E6B787401305 ๐Ÿ‘ค pc1per9u20nj ๐Ÿ’ป 831FEBAB92B3 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 9}","height":10,"block":"{โŒ˜ 3D748F25DEC2 ๐Ÿ‘ค pc1pke0rpxum ๐Ÿ’ป 31B96AFCC58B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 10}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 10}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 more-blocks 12-22}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 10}","message":"{โš“ 0 more-blocks 12-22}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 10}","height":11,"block":"{โŒ˜ 4C1AFA5C5CDE ๐Ÿ‘ค pc1ptfqmjqnc ๐Ÿ’ป C696AFE87EBA ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 11}","height":12,"block":"{โŒ˜ 7592E1A3EE4D ๐Ÿ‘ค pc1ptw5ul45k ๐Ÿ’ป A5EE90BB2CEB ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 12}","height":13,"block":"{โŒ˜ 94225F1259CD ๐Ÿ‘ค pc1pmpxff9um ๐Ÿ’ป 1DBC78D503F9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 13}","height":14,"block":"{โŒ˜ 3D899360DB73 ๐Ÿ‘ค pc1ppd0ljph6 ๐Ÿ’ป C99B4BC5CE44 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 14}","height":15,"block":"{โŒ˜ 7F389E2DCA05 ๐Ÿ‘ค pc1per0sxzdn ๐Ÿ’ป B96232EDA2E2 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 15}","height":16,"block":"{โŒ˜ 04E954096B22 ๐Ÿ‘ค pc1py59up5ak ๐Ÿ’ป 1A8A44FAB7D4 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 16}","height":17,"block":"{โŒ˜ 83A2E2FCC7E0 ๐Ÿ‘ค pc1pd9t5a7r0 ๐Ÿ’ป 5DD93A002DBB ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 17}","height":18,"block":"{โŒ˜ 227AC29676C0 ๐Ÿ‘ค pc1p7tkmzssw ๐Ÿ’ป 04E3A0A4668D ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 18}","height":19,"block":"{โŒ˜ 10838243DDE1 ๐Ÿ‘ค pc1p9jlc49tg ๐Ÿ’ป E777D5AFE41F ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 19}","height":20,"block":"{โŒ˜ 2984CCD0256A ๐Ÿ‘ค pc1pjuwv7r3h ๐Ÿ’ป 26CCD052DC9F ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 20}","height":21,"block":"{โŒ˜ 8DFCD38481F3 ๐Ÿ‘ค pc1phyajzd23 ๐Ÿ’ป DC33BE88A5B3 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 21}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 21}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 more-blocks 23-23}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 21}","message":"{โš“ 0 more-blocks 23-23}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 21}","height":22,"block":"{โŒ˜ 28535F9B8EC9 ๐Ÿ‘ค pc1p5kteay7u ๐Ÿ’ป 85A551A3613A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 no-more-blocks 0-0}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","message":"{โš“ 0 no-more-blocks 0-0}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer has no more block. close session"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","time":"2023-09-06T10:25:14+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","from":23,"time":"2023-09-06T10:25:14+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","from":24,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending download request"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","bundle":"blocks-req{โš“ 1 24:46}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 1 24:46}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 1 24:46}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 more-blocks 24-34}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 more-blocks 24-34}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","message":"{โš“ 1 more-blocks 24-34}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 more-blocks 35-45}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 more-blocks 46-46}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 22}","height":23,"block":"{โŒ˜ 9CF87606A516 ๐Ÿ‘ค pc1p70yfqg6h ๐Ÿ’ป E23344AE6922 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 23}","height":24,"block":"{โŒ˜ 50FD7F7EACD0 ๐Ÿ‘ค pc1p6jp748rn ๐Ÿ’ป 24D8C9111369 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 24}","height":25,"block":"{โŒ˜ 85C7216E7BCE ๐Ÿ‘ค pc1pxygrrv3t ๐Ÿ’ป 4E5D49994C1C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 25}","height":26,"block":"{โŒ˜ 183E364133BC ๐Ÿ‘ค pc1p9w6gnn6p ๐Ÿ’ป BCA6C221848B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 26}","height":27,"block":"{โŒ˜ 49E09A4C58F0 ๐Ÿ‘ค pc1p4q2hc7f3 ๐Ÿ’ป 8B9F8927361D ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 27}","height":28,"block":"{โŒ˜ 209C9ECD7ED4 ๐Ÿ‘ค pc1p3rr6azuu ๐Ÿ’ป 74D8DA80B543 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 28}","height":29,"block":"{โŒ˜ C7CFA43CD74D ๐Ÿ‘ค pc1palrlw3zy ๐Ÿ’ป 01B2F7ABEEF8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 29}","height":30,"block":"{โŒ˜ 520DA0E2C39D ๐Ÿ‘ค pc1pphgfzy9v ๐Ÿ’ป 35B33FE3B7A7 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 30}","height":31,"block":"{โŒ˜ 5FB54A286B7C ๐Ÿ‘ค pc1pjpt2nqng ๐Ÿ’ป B396A42D7A07 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 31}","height":32,"block":"{โŒ˜ AD79686CC2BB ๐Ÿ‘ค pc1p8g69k6dn ๐Ÿ’ป F37F9694BEEF ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 32}","height":33,"block":"{โŒ˜ C864D55D97DB ๐Ÿ‘ค pc1p8qffd29v ๐Ÿ’ป 97958343E00C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 33}","session-id":1,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 33}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 more-blocks 35-45}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 33}","message":"{โš“ 1 more-blocks 35-45}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 33}","height":34,"block":"{โŒ˜ DD662AE9DE63 ๐Ÿ‘ค pc1pem6jr9gs ๐Ÿ’ป 63E47F345D5E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 34}","height":35,"block":"{โŒ˜ 50F232B6B3A9 ๐Ÿ‘ค pc1phuc92524 ๐Ÿ’ป 103794655359 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 35}","height":36,"block":"{โŒ˜ DB140C7B6592 ๐Ÿ‘ค pc1pw9lxdjlu ๐Ÿ’ป A03FF9451660 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 36}","height":37,"block":"{โŒ˜ 676610A8AD35 ๐Ÿ‘ค pc1pluycwyl2 ๐Ÿ’ป 9D39EFCD3408 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 37}","height":38,"block":"{โŒ˜ 17232430EF18 ๐Ÿ‘ค pc1p820m762q ๐Ÿ’ป 9566671B41E8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 38}","height":39,"block":"{โŒ˜ 12CF25F9A498 ๐Ÿ‘ค pc1pf5q3pag8 ๐Ÿ’ป A0E249923272 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 39}","height":40,"block":"{โŒ˜ F261C8DFA3BF ๐Ÿ‘ค pc1ptqukcdxt ๐Ÿ’ป 9C297263CA21 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 40}","height":41,"block":"{โŒ˜ DE2A86070D91 ๐Ÿ‘ค pc1px5u44szm ๐Ÿ’ป 90F1FD0A2CA9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 41}","height":42,"block":"{โŒ˜ FFF6E96A9BE7 ๐Ÿ‘ค pc1pv5w9h649 ๐Ÿ’ป 5154BCC413FD ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 42}","height":43,"block":"{โŒ˜ E654E8C419F4 ๐Ÿ‘ค pc1p6z7rcvuh ๐Ÿ’ป AE17E4FC8F8A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 43}","height":44,"block":"{โŒ˜ 816EDCB9DFB6 ๐Ÿ‘ค pc1pvp8xdeq0 ๐Ÿ’ป ED2E933D4580 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 44}","session-id":1,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 44}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 more-blocks 46-46}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 44}","message":"{โš“ 1 more-blocks 46-46}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 44}","height":45,"block":"{โŒ˜ C2A623780EE3 ๐Ÿ‘ค pc1p7jnasdz2 ๐Ÿ’ป C3FA32050721 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","session-id":1,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","message":"{โš“ 1 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","session-id":1,"time":"2023-09-06T10:25:15+03:30","message":"peer has no more block. close session"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","time":"2023-09-06T10:25:15+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","from":46,"time":"2023-09-06T10:25:15+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","from":47,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending download request"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","bundle":"blocks-req{โš“ 2 47:69}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 2 47:69}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 2 47:69}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 more-blocks 47-57}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 more-blocks 47-57}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","message":"{โš“ 2 more-blocks 47-57}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 more-blocks 58-68}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 more-blocks 69-69}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 45}","height":46,"block":"{โŒ˜ 797B583B1D2C ๐Ÿ‘ค pc1pr0ldpqra ๐Ÿ’ป D16CDA027F37 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 46}","height":47,"block":"{โŒ˜ 9A56369BEE7B ๐Ÿ‘ค pc1phan659xj ๐Ÿ’ป 63D4EFE86EE8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 47}","height":48,"block":"{โŒ˜ 0D8330F5A389 ๐Ÿ‘ค pc1p0g0q5tj4 ๐Ÿ’ป F41113DE2C26 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 48}","height":49,"block":"{โŒ˜ 2F5D40649AD9 ๐Ÿ‘ค pc1pxy0fweeg ๐Ÿ’ป 8FA1B37918A9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 49}","height":50,"block":"{โŒ˜ 9EA21BC3666C ๐Ÿ‘ค pc1pksvekx2r ๐Ÿ’ป BF8BAAC01D8B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 50}","height":51,"block":"{โŒ˜ 52A04081D19F ๐Ÿ‘ค pc1pf5pd2z3x ๐Ÿ’ป 0A6645EC67D9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 51}","height":52,"block":"{โŒ˜ AB22CA0E826A ๐Ÿ‘ค pc1psr55qy8t ๐Ÿ’ป 7B66158310C4 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 52}","height":53,"block":"{โŒ˜ 74F8CD9F2255 ๐Ÿ‘ค pc1p25xldhjc ๐Ÿ’ป AD0A83B9E90E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 53}","height":54,"block":"{โŒ˜ 7610E9C42937 ๐Ÿ‘ค pc1pg7y0gsh0 ๐Ÿ’ป 91E369B022D1 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 54}","height":55,"block":"{โŒ˜ 85727D720850 ๐Ÿ‘ค pc1p2mnyc0ur ๐Ÿ’ป 2AE3233D543B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 55}","height":56,"block":"{โŒ˜ 9AF45FCEA1C4 ๐Ÿ‘ค pc1pjcuc2qpl ๐Ÿ’ป 2D4A11279F8B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 56}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 56}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 more-blocks 58-68}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 56}","message":"{โš“ 2 more-blocks 58-68}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 56}","height":57,"block":"{โŒ˜ 35A9CCA89227 ๐Ÿ‘ค pc1plqtjvdrx ๐Ÿ’ป 6F70D5FA7434 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 57}","height":58,"block":"{โŒ˜ F4D5CC4DF620 ๐Ÿ‘ค pc1pcjmjldmg ๐Ÿ’ป 2D5D34292A22 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 58}","height":59,"block":"{โŒ˜ 4F4D099C1E48 ๐Ÿ‘ค pc1pvyw4gwu4 ๐Ÿ’ป 3F1F53C45CB5 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 59}","height":60,"block":"{โŒ˜ 543C82A0C8C3 ๐Ÿ‘ค pc1p5gh5s7e9 ๐Ÿ’ป 70F1A7C5FA85 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 60}","height":61,"block":"{โŒ˜ CFEB9F1ADF84 ๐Ÿ‘ค pc1pnv3rms3c ๐Ÿ’ป 18F63078D059 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 61}","height":62,"block":"{โŒ˜ 28BBB4B1E121 ๐Ÿ‘ค pc1p9vnd63a8 ๐Ÿ’ป 62FD76A23F44 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 62}","height":63,"block":"{โŒ˜ 56FD6F20C4B9 ๐Ÿ‘ค pc1pumf842sv ๐Ÿ’ป 7E0BF2CD347A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 63}","height":64,"block":"{โŒ˜ 2D6195EEC691 ๐Ÿ‘ค pc1pfy5dpcx6 ๐Ÿ’ป D64539A60E8D ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 64}","height":65,"block":"{โŒ˜ 30F822E26D5B ๐Ÿ‘ค pc1pfgzs0nm6 ๐Ÿ’ป 4102E06D680E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 65}","height":66,"block":"{โŒ˜ 64622C4F01D3 ๐Ÿ‘ค pc1ppjvw6mhp ๐Ÿ’ป 0A24FC60401C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 66}","height":67,"block":"{โŒ˜ 04B249DEFCE8 ๐Ÿ‘ค pc1pcq72cq3v ๐Ÿ’ป AD02C2524263 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 67}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 67}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 more-blocks 69-69}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 67}","message":"{โš“ 2 more-blocks 69-69}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 67}","height":68,"block":"{โŒ˜ 56ACF3180448 ๐Ÿ‘ค pc1p26mfc7um ๐Ÿ’ป AB7A9E28CC3F ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","message":"{โš“ 2 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer has no more block. close session"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","time":"2023-09-06T10:25:15+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","from":69,"time":"2023-09-06T10:25:15+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","from":70,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending download request"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","bundle":"blocks-req{โš“ 3 70:92}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 3 70:92}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 3 70:92}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 more-blocks 70-80}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 more-blocks 70-80}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","message":"{โš“ 3 more-blocks 70-80}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 more-blocks 81-91}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 more-blocks 92-92}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 68}","height":69,"block":"{โŒ˜ 6FD92B36CA00 ๐Ÿ‘ค pc1phqhuv5he ๐Ÿ’ป B129EA246DBA ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 69}","height":70,"block":"{โŒ˜ 72531A11555D ๐Ÿ‘ค pc1pguzc7xrq ๐Ÿ’ป 31F33D3789E8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 70}","height":71,"block":"{โŒ˜ FDDD06964107 ๐Ÿ‘ค pc1pwf5trklr ๐Ÿ’ป 6051953F981C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 71}","height":72,"block":"{โŒ˜ D76B56C05E04 ๐Ÿ‘ค pc1paczaj7mp ๐Ÿ’ป 856D733F1068 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 72}","height":73,"block":"{โŒ˜ CE47CE9701E7 ๐Ÿ‘ค pc1plhmf2lvh ๐Ÿ’ป BA209377CAC8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 73}","height":74,"block":"{โŒ˜ 0F61A8D67693 ๐Ÿ‘ค pc1pj5xzqvcc ๐Ÿ’ป C3C5618AC955 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 74}","height":75,"block":"{โŒ˜ BCC6C7CD71FF ๐Ÿ‘ค pc1phnp8wfmd ๐Ÿ’ป 9D6184F402BB ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 75}","height":76,"block":"{โŒ˜ 64C4A3534915 ๐Ÿ‘ค pc1p03rlqj7y ๐Ÿ’ป 6D7884897B80 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 76}","height":77,"block":"{โŒ˜ 01F54DD90D5C ๐Ÿ‘ค pc1pvrzkkzae ๐Ÿ’ป F228A1507CC9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 77}","height":78,"block":"{โŒ˜ 74DF9DBBD973 ๐Ÿ‘ค pc1pyjehynq5 ๐Ÿ’ป B64449181FAC ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 78}","height":79,"block":"{โŒ˜ 13FF963090C6 ๐Ÿ‘ค pc1pz20vt9ma ๐Ÿ’ป 0BC98747C3B6 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 79}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 79}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 more-blocks 81-91}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 79}","message":"{โš“ 3 more-blocks 81-91}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 79}","height":80,"block":"{โŒ˜ 33DC64EF400B ๐Ÿ‘ค pc1pu5dvhxek ๐Ÿ’ป 0647AD650A39 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 80}","height":81,"block":"{โŒ˜ D365D37B3068 ๐Ÿ‘ค pc1pg8wqnzx7 ๐Ÿ’ป 0016D2037622 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 81}","height":82,"block":"{โŒ˜ 9F5FE4EB6184 ๐Ÿ‘ค pc1pvvwcpukz ๐Ÿ’ป 5AA6649D507C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 82}","height":83,"block":"{โŒ˜ 6684DA8EA694 ๐Ÿ‘ค pc1pfmlc22ej ๐Ÿ’ป E485A29B72C0 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 83}","height":84,"block":"{โŒ˜ C5BB2BCF8A95 ๐Ÿ‘ค pc1pq7mk92yp ๐Ÿ’ป C53DC089D4D8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 84}","height":85,"block":"{โŒ˜ 07117351AA96 ๐Ÿ‘ค pc1pp5vr2sx4 ๐Ÿ’ป B721B741AC9E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 85}","height":86,"block":"{โŒ˜ 4568597E1D26 ๐Ÿ‘ค pc1pjye8wf93 ๐Ÿ’ป 3C012D824446 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 86}","height":87,"block":"{โŒ˜ 26B3FEEE841D ๐Ÿ‘ค pc1p36zdw76j ๐Ÿ’ป A75BE241CF49 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 87}","height":88,"block":"{โŒ˜ B12611EF9EC7 ๐Ÿ‘ค pc1pw9un96ss ๐Ÿ’ป 026EBA7FE146 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 88}","height":89,"block":"{โŒ˜ B343086DA71F ๐Ÿ‘ค pc1p7qxurrr9 ๐Ÿ’ป D1956DAAA6EF ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 89}","height":90,"block":"{โŒ˜ F8F2E7BCDEE9 ๐Ÿ‘ค pc1p8n9gw9y5 ๐Ÿ’ป E4F233879C6C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 90}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 90}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 more-blocks 92-92}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 90}","message":"{โš“ 3 more-blocks 92-92}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 90}","height":91,"block":"{โŒ˜ E8B20594F21B ๐Ÿ‘ค pc1pv8wn60ah ๐Ÿ’ป 57F92FC2CBFA ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","message":"{โš“ 3 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer has no more block. close session"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","time":"2023-09-06T10:25:15+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","from":92,"time":"2023-09-06T10:25:15+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","from":93,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending download request"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","bundle":"blocks-req{โš“ 4 93:115}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 4 93:115}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 4 93:115}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksRequest message"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 4 more-blocks 93-100}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"debug","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","height":101,"time":"2023-09-06T10:25:15+03:30","message":"we don't have block at this height"} +{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 4 synced 100-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 4 more-blocks 93-100}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","message":"{โš“ 4 more-blocks 93-100}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 91}","height":92,"block":"{โŒ˜ 992CC4079AD8 ๐Ÿ‘ค pc1pgnv7y66n ๐Ÿ’ป B9ED9919A15B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 92}","height":93,"block":"{โŒ˜ 30B6A5D54A1C ๐Ÿ‘ค pc1p363qjkan ๐Ÿ’ป 86DA7AC84B17 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 93}","height":94,"block":"{โŒ˜ 4D6C7AD0DBB7 ๐Ÿ‘ค pc1pgw890mj6 ๐Ÿ’ป 7ABD8879DE52 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 94}","height":95,"block":"{โŒ˜ 6A75219DFFBA ๐Ÿ‘ค pc1p4u4gj5ua ๐Ÿ’ป B24EFFA3D4D8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 95}","height":96,"block":"{โŒ˜ 1E0136387E8A ๐Ÿ‘ค pc1pxu6uvqwd ๐Ÿ’ป 225103F45187 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 96}","height":97,"block":"{โŒ˜ 523C527A1CD8 ๐Ÿ‘ค pc1p7sgscsf6 ๐Ÿ’ป 0EBBEADDE300 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 97}","height":98,"block":"{โŒ˜ 74777D40A0B8 ๐Ÿ‘ค pc1ptrcll4zq ๐Ÿ’ป 9265F0380DE0 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 98}","height":99,"block":"{โŒ˜ 5EDA78E5E978 ๐Ÿ‘ค pc1przvg7m4v ๐Ÿ’ป DFF61CFBC1E0 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 99}","session-id":4,"time":"2023-09-06T10:25:16+03:30","message":"peer responding us. keep session open"} +{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 99}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 4 synced 100-0}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 99}","message":"{โš“ 4 synced 100-0}","time":"2023-09-06T10:25:16+03:30","message":"parsing BlocksResponse message"} +{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 101 โ‡ˆ 100 โ†‘ 99}","height":100,"block":"{โŒ˜ 83DDE48D5C70 ๐Ÿ‘ค pc1psl4ajm82 ๐Ÿ’ป FAD2D7EBE6C6 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} +{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 101 โ‡ˆ 100 โ†‘ 100}","session-id":4,"time":"2023-09-06T10:25:16+03:30","message":"peer informed us we are synced. close session"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/2}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/2}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/2}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","message":"{1/2}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","ours":1,"peer":2,"time":"2023-09-06T10:25:16+03:30","message":"our consensus is behind of this peer"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:16+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","message":"{1/0}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","ours":1,"peer":0,"time":"2023-09-06T10:25:16+03:30","message":"our consensus is ahead of this peer"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/1}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","ours":1,"peer":1,"time":"2023-09-06T10:25:16+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{21/-1}","time":"2023-09-06T10:25:17+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:17+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:17+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:18+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:18+03:30","message":"broadcasting new bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmPk7jP1GbKpvNmQZyUNP9QQfj4jxsTzXszR8EUncu51P6","bundle":"hello{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"parsing Hello message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmRzjmWtYHz62HmQduaQWjq1YHoFMMXeENkxtWK4gKbKMo","bundle":"hello{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"parsing Hello message"} +{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","bundle":"hello{kitty 21}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{kitty 21}","time":"2023-09-06T10:25:19+03:30","message":"parsing Hello message"} +{"level":"debug","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","moniker":"kitty","flags":256,"time":"2023-09-06T10:25:19+03:30","message":"updating peer info"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","bundle":"hello{Alice 21 ack}","to":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","time":"2023-09-06T10:25:19+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","to":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","Ack":true,"time":"2023-09-06T10:25:19+03:30","message":"Sending Hello message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","initiator":"QmQemwRyQ7gYYn9xN8oRLpqmePEjtaHbX2XvMPSeYWBb47","bundle":"hello{kitty 9 ack}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","message":"{kitty 9 ack}","time":"2023-09-06T10:25:19+03:30","message":"parsing Hello message"} +{"level":"debug","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","pid":"QmQemwRyQ7gYYn9xN8oRLpqmePEjtaHbX2XvMPSeYWBb47","moniker":"kitty","flags":1,"time":"2023-09-06T10:25:19+03:30","message":"updating peer info"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","bundle":"hello{kitty 26 ack}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{kitty 26 ack}","time":"2023-09-06T10:25:19+03:30","message":"parsing Hello message"} +{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","moniker":"kitty","flags":1,"time":"2023-09-06T10:25:19+03:30","message":"updating peer info"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","time":"2023-09-06T10:25:19+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:19+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","from":22,"count":23,"pid":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","time":"2023-09-06T10:25:19+03:30","message":"sending download request"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","bundle":"blocks-req{โš“ 0 22:44}","to":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","time":"2023-09-06T10:25:19+03:30","message":"sending bundle to a peer"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"hello{Alice 21 ack}","to":"QmfCR7chcV9PRY69ahdVARbHopvLHr8mnsyojqKpupUssB","time":"2023-09-06T10:25:19+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","to":"QmfCR7chcV9PRY69ahdVARbHopvLHr8mnsyojqKpupUssB","Ack":true,"time":"2023-09-06T10:25:19+03:30","message":"Sending Hello message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmVBr3LZmvavML3AYz6JhzuoRDKv75CVfDBtyL1kG4QvQk","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ D54BB371185A ๐Ÿ‘ค pc1phwwdf3w8 ๐Ÿ’ป 3E1DBA899740 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ D54BB371185A ๐Ÿ‘ค pc1phwwdf3w8 ๐Ÿ’ป 3E1DBA899740 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{1/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{1/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"proposal{1/0 ๐Ÿ—ƒ {โŒ˜ CEA9B9F5A1B0 ๐Ÿ‘ค pc1pav42zs08 ๐Ÿ’ป 3732C6CE7B62 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{1/1}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:20+03:30","message":"logging configured"} +{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","time":"2023-09-06T10:25:21+03:30","message":"sending QueryProposal ignored. We are not in the committee"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"query-proposal{22/0}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:21+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PRECOMMIT โŒ˜ 40642598464D ๐Ÿ‘ค pc1psf2y6y5a}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{2/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{2/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:21+03:30","message":"logging configured"} +{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","time":"2023-09-06T10:25:22+03:30","message":"sending QueryVotes ignored. We are not in the committee"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"query-votes{22/1}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:22+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmajpxqbABwY4Ep9fPrRPV35DZwobfMn7UVsyoUBHP2kPv","bundle":"txsD71A1D8B41CC {1: โŒ˜ [D71A1D8B41CC ]}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"D71A1D8B41CC {1: โŒ˜ [D71A1D8B41CC ]}","time":"2023-09-06T10:25:22+03:30","message":"parsing Transactions message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:22+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQX7pNYc3BARLL3CQhG792BNEo8jKoR6BCEK59oMfuTps","bundle":"vote{1/0/PRECOMMIT โŒ˜ 85A4CA606688 ๐Ÿ‘ค pc1pz5vm04hc}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/0/PRECOMMIT โŒ˜ 85A4CA606688 ๐Ÿ‘ค pc1pz5vm04hc}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:22+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:23+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:23+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:23+03:30","message":"broadcasting new bundle"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:23+03:30","message":"logging configured"} +{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:23+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:23+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:23+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:23+03:30","message":"downloading blocks"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":22,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 0 22:44}","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"blocks-res{โš“ 1 rejected 1-0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โš“ 1 rejected 1-0}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlocksResponse message"} +{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","response":"rejected","time":"2023-09-06T10:25:24+03:30","message":"blocks request is rejected"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","session-id":1,"time":"2023-09-06T10:25:24+03:30","message":"session rejected, close session"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":22,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 2 22:44}","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending bundle to a peer"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":22,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} +{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 3 22:44}","err":"send error","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"error on sending bundle"} +{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":45,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} +{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 4 45:67}","err":"send error","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"error on sending bundle"} diff --git a/tests/logs/pactus.log b/tests/logs/pactus.log new file mode 100644 index 000000000..9351f77a4 --- /dev/null +++ b/tests/logs/pactus.log @@ -0,0 +1,22677 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/tests/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/tests/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"info","_network":"{0}","id":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","address":["/ip4/127.0.0.1/tcp/0","/ip4/127.0.0.1/udp/0/quic"],"time":"2023-09-06T10:25:13+03:30","message":"network setup"} +{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:13+03:30","message":"check connectivity"} +{"level":"debug","_network":"{0}","count":0,"threshold":3,"time":"2023-09-06T10:25:13+03:30","message":"peer count is less than minimum threshold"} +{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:13+03:30","message":"expanding the connections"} +{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/34023","/ip4/127.0.0.1/udp/50968/quic"],"time":"2023-09-06T10:25:13+03:30","message":"network started"} +{"level":"debug","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/35079","/ip4/127.0.0.1/udp/39254/quic"],"id":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"connecting to new peer"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"Connected to peer with peerID:"} +{"level":"trace","_network":"{1}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"sending stream"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"Connected to peer with peerID:"} +{"level":"trace","_network":"{1}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"sending stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} +{"level":"trace","_network":"{1}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} +{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} +{"level":"debug","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/40649","/ip4/127.0.0.1/udp/59227/quic"],"id":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"connecting to new peer"} +{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} +{"level":"trace","_network":"{2}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} +{"level":"trace","_network":"{2}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} +{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} +{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} +{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} +{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} +{"level":"debug","_network":"{2}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} +{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} +{"level":"debug","_network":"{2}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} +{"level":"debug","_network":"{2}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} +{"level":"debug","_network":"{2}","addr":["/ip4/127.0.0.1/tcp/39157","/ip4/127.0.0.1/udp/49643/quic"],"id":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"connecting to new peer"} +{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"Connected to peer with peerID:"} +{"level":"trace","_network":"{3}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} +{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"Connected to peer with peerID:"} +{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:17+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:17+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} +{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"sending stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} +{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"sending stream"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:23+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:29+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:29+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:33+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:39+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:39+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:43+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:49+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:49+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:53+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:59+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:59+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:03+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:09+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:09+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:13+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:19+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:23+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:29+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:29+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{3}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/50968/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/34023","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.13}","delay":"4.12744713s","time":"2023-09-06T10:25:19+03:30","message":"it looks the last block had delay"} +{"level":"info","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.13}","delay":"4.13439398s","time":"2023-09-06T10:25:19+03:30","message":"it looks the last block had delay"} +{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.13}","delay":"4.13752721s","time":"2023-09-06T10:25:19+03:30","message":"it looks the last block had delay"} +{"level":"info","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"717.743277ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"717.731235ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"717.632739ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"715.876249ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"715.865795ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"715.791124ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"715.313026ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"715.187728ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"715.131869ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"714.376848ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"714.308766ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"714.256813ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"711.756183ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"711.744549ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"711.650767ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"711.088164ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"711.031832ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"710.986171ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"710.496345ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"710.435782ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"710.389811ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"710.277071ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"710.215998ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"710.21108ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"710.162679ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"710.152426ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"710.103965ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"702.097916ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"702.084771ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"701.987145ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"700.946335ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"700.89648ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"700.770158ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"700.727043ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"700.714866ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"700.70949ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"700.652981ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"700.65955ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"700.598481ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"697.614142ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"697.555574ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"697.493771ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"697.03381ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"696.985975ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"696.941481ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"696.504071ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"696.453769ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"696.408391ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","ticker":"714.376848ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","ticker":"700.727043ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","ticker":"700.652981ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","ticker":"696.408391ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","ticker":"711.744549ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","ticker":"715.876249ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","ticker":"702.097916ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.986171ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.986171ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"700.70949ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","ticker":"717.731235ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","ticker":"714.256813ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","ticker":"700.770158ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"700.70949ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.389811ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.389811ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.791124ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","ticker":"702.084771ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"711.031832ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.791124ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"711.031832ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","ticker":"700.89648ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"710.435782ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"710.103965ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"710.435782ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"710.103965ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"711.650767ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"711.650767ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.131869ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.131869ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"696.941481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"696.941481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"697.493771ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"697.493771ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"701.987145ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"701.987145ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.865795ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.865795ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","time":"2023-09-06T10:25:20+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"710.152426ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"710.152426ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"700.946335ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.187728ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.187728ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","time":"2023-09-06T10:25:20+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"700.946335ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.985975ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.03381ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"715.313026ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.03381ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.985975ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"715.313026ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.614142ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"697.555574ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"710.21108ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.614142ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"697.555574ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"710.21108ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"696.504071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.453769ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"696.504071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.453769ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"710.215998ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"710.215998ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"717.632739ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"717.632739ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"700.65955ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","time":"2023-09-06T10:25:20+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"710.162679ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"700.65955ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"710.277071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"710.162679ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"710.277071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"714.308766ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"700.598481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"714.308766ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"700.714866ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"700.714866ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"700.598481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"717.743277ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"717.743277ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"710.496345ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"710.496345ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.088164ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.088164ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.756183ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.756183ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.957646526s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.9576339s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.957537927s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.956011433s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.956002151s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.955895695s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.954078885s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.954067455s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.953990907s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.953975577s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.953931193s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.953871217s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.953653508s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.953646089s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.953557293s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.952492191s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.952418483s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.95237136s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.951868829s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.951822532s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.951775568s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.951770161s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.951722049s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.951677944s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.95098544s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.950935s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.950891062s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.950161878s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.950106995s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.950056748s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.949792274s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.94975093s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.949703621s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.949469838s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.94942133s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.949381002s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.949088306s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.949043709s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.949004402s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.948860873s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.948828066s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.948781958s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.94836501s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.948321337s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.948276367s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.948155169s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.948110224s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.948063295s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:20+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:20+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:20+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:21+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:21+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:21+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:21+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:21+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:21+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:21+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:21+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:21+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:21+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"1.954067455s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","ticker":"1.957646526s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"1.949004402s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"1.950056748s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","ticker":"1.956011433s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"1.956002151s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.950891062s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"1.95237136s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.950891062s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"1.951822532s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.951677944s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.951677944s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","ticker":"1.948155169s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.94942133s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.955895695s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.955895695s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"1.953975577s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.953557293s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.953557293s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"1.948321337s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.948276367s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.948276367s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.953646089s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.953646089s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.949043709s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.949703621s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.949043709s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.949703621s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.94975093s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.94975093s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","ticker":"1.953653508s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.94942133s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948110224s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948110224s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948828066s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948828066s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950935s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","time":"2023-09-06T10:25:22+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p54qca6v4 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.951868829s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.951868829s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950935s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.952418483s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.952492191s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950106995s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.952492191s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","time":"2023-09-06T10:25:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950106995s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.951775568s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.953990907s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.950161878s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.951722049s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.951775568s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.953990907s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.952418483s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.951722049s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.950161878s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.953871217s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.951770161s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.953871217s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.953931193s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.951770161s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.953931193s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.95098544s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.9576339s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.95098544s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.9576339s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.957537927s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.957537927s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.949381002s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.949381002s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948063295s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948063295s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948781958s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948781958s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","time":"2023-09-06T10:25:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949088306s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949088306s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.94836501s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.94836501s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949792274s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949792274s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 3/0/propose/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.954078885s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.954078885s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.949469838s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.949469838s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.948860873s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.948860873s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 3/0/prepare/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.951371318s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.951359619s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.951250368s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.947671183s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.947663892s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.947565986s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.946121585s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.94605867s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.946008431s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.945073149s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.945061802s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.944962218s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.943713318s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.943700405s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.943590508s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.943483216s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.943446694s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.943415696s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.942874588s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.942781708s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.942726257s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.942179587s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.942130081s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.942087782s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.942050301s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.942002316s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.941955743s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.941336426s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.941291775s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.941244377s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.940378919s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.940325988s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.940281245s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.939579886s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.939523612s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.939478185s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.939011252s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.938955069s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.938905237s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.938749641s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.938699843s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.938655019s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.93821747s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.938161262s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.93810951s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.937423859s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.937368466s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.937318842s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0}","time":"2023-09-06T10:25:22+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","ours":0,"peer":0,"time":"2023-09-06T10:25:22+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0}","time":"2023-09-06T10:25:22+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","ours":0,"peer":0,"time":"2023-09-06T10:25:22+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0}","time":"2023-09-06T10:25:22+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","ours":0,"peer":0,"time":"2023-09-06T10:25:22+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","ticker":"1.951371318s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.947663892s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","ticker":"1.943713318s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","ticker":"1.945073149s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.945061802s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.947565986s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.943700405s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.951359619s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","ticker":"1.947671183s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.939478185s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.937318842s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941955743s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.942087782s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941955743s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942002316s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941244377s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941244377s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942002316s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.942726257s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.941291775s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.942726257s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.941291775s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942781708s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942781708s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938955069s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938955069s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.937368466s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","time":"2023-09-06T10:25:24+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.937368466s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.938905237s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.939011252s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938161262s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.938905237s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.939011252s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938161262s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.93810951s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.93821747s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.93810951s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.93821747s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.943590508s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.939523612s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.937423859s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.943590508s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.939523612s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.944962218s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.937423859s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.940325988s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.944962218s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","time":"2023-09-06T10:25:24+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.940325988s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.940281245s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.939579886s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.938699843s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.940281245s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.939579886s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.938699843s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.938749641s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.938655019s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.938749641s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.938655019s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.940378919s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.940378919s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.942130081s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.942130081s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.94605867s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.94605867s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.943446694s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.943446694s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.951250368s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","time":"2023-09-06T10:25:24+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.951250368s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.942179587s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.946008431s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.942179587s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.946008431s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.943483216s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.943483216s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.943415696s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.946121585s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.943415696s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.946121585s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 4/0/propose/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.941336426s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.941336426s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942050301s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942050301s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942874588s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942874588s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1psgn080ye 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.955616576s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.955607344s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.955502219s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.95534783s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.955337857s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.955234973s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.954691985s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.954423813s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.954420482s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.954319752s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.954107048s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.954025589s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.951591755s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.951543084s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.951506265s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.950880113s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.950814842s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.950768423s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.95065324s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.950592954s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.950545571s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.950288237s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.950238421s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.950182562s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.950053749s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.950004408s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.949951152s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.949847554s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.949792698s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.949744197s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.949492999s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.949441216s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.949394181s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.949366316s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.94931211s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.949264374s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.949116809s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.949065827s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.949051959s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.949021626s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.948994059s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.948942395s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.948720614s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.948671016s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.948625935s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.948428599s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.948397262s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.948370441s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:24+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:24+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:24+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:24+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:24+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:24+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:24+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:25+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:25+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:25+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:25+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:25+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:25+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:25+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:25+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:25+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.955337857s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","ticker":"1.95534783s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.954420482s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","ticker":"1.954423813s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.948370441s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","ticker":"1.954691985s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.950004408s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.955607344s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.955234973s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.950592954s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949951152s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.954107048s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.950592954s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.954107048s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.949394181s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.949792698s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.950238421s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.949792698s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949951152s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.950238421s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.948994059s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.94931211s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.954025589s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.948994059s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.949264374s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.948397262s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.954025589s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.94931211s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.948397262s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949021626s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.950814842s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949021626s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.949065827s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.949441216s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.950814842s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.949065827s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.949441216s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.955502219s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.955502219s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.948671016s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.951543084s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.948671016s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","ticker":"1.949366316s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.950768423s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.951543084s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.950768423s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.951506265s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.951506265s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.949744197s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.949744197s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.948942395s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.948942395s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.950545571s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.950545571s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.948625935s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","time":"2023-09-06T10:25:26+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.948625935s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.949116809s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","time":"2023-09-06T10:25:26+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.950182562s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.949116809s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.950182562s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.949492999s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.948428599s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.954319752s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.949492999s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.948428599s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.954319752s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.950053749s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.950288237s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.950053749s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.950288237s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","time":"2023-09-06T10:25:26+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.948720614s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.950880113s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.948720614s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.950880113s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.955616576s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.955616576s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.951591755s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.951591755s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 5/0/propose/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1psgn080ye 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949051959s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949051959s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.95065324s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.95065324s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949847554s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949847554s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.961802695s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.961790755s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.961692288s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.960793s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.960650048s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.96056081s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p598fm5tg 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.960261577s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.960225643s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.960124081s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.957234662s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.957179376s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.957133372s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.956455151s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.956403181s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.956359242s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.956148088s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.956095159s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.956049537s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.955650125s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.955606125s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.955566478s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.955363976s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.955312159s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.95526339s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.955120389s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.95511487s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.955019268s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.954979755s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.954936385s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.954895885s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.953762187s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.953705498s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.953713259s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.953662408s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.953628113s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.953627329s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.95361304s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.953572549s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.953526311s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.951391493s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.951343839s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.951301528s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.950750862s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.950717534s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.950684966s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.950291453s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.950260609s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.950233227s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:26+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:26+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:26+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:26+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:26+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:26+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:26+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:27+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:27+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:27+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:27+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:27+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:27+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:27+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:27+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","ticker":"1.957234662s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.956403181s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.955566478s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","ticker":"1.955363976s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.953526311s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","ticker":"1.960261577s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.95511487s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.953713259s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.954895885s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.953572549s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.954895885s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.953572549s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.960124081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.956049537s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.960124081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","ticker":"1.955120389s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.950233227s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950260609s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950260609s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.961790755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.953628113s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.951343839s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.954936385s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.961790755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.954936385s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.951343839s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.955606125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.955606125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.957179376s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950717534s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.960225643s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.957179376s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950717534s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.953628113s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.960225643s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.960650048s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.956359242s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","time":"2023-09-06T10:25:28+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.956359242s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.96056081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.961802695s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.961802695s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.96056081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.957133372s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.953627329s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.951301528s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.953627329s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.957133372s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.951301528s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95526339s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.956455151s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","time":"2023-09-06T10:25:28+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","time":"2023-09-06T10:25:28+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.956455151s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95526339s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.955019268s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.961692288s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.954979755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.955019268s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.961692288s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950750862s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95361304s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.950684966s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95361304s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950750862s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.950684966s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.954979755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950291453s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.955650125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950291453s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.955650125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.951391493s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.953662408s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.951391493s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.953762187s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.953662408s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.953762187s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.955312159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.955312159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.956095159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.956095159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/propose/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.960793s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.960793s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.956148088s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.956148088s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.953705498s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.953705498s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 6/0/prepare/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.958431828s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.95842222s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.958319832s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.956741553s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.956732532s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.956629961s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.954438363s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.954426558s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.954332645s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.953687203s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.953630748s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.953567621s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.953403276s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.953341891s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.953295347s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.952869194s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.95281211s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.952762425s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.952612589s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.952561368s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.952516884s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.951510418s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.951502633s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.951410808s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.950641011s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.950578616s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.95053052s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.950079955s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.950014004s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.949992961s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.949968241s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.949943323s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.949895961s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.949821558s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.949788084s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.949759877s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.949365222s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.949333638s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.949306347s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.947770636s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.947724488s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.947674644s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.947048466s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.947002386s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.946952338s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.946341187s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.946297385s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.94624769s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0}","time":"2023-09-06T10:25:29+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","ours":0,"peer":0,"time":"2023-09-06T10:25:29+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0}","time":"2023-09-06T10:25:29+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","ours":0,"peer":0,"time":"2023-09-06T10:25:29+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0}","time":"2023-09-06T10:25:29+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","ours":0,"peer":0,"time":"2023-09-06T10:25:29+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.956732532s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","ticker":"1.952869194s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.95842222s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","ticker":"1.954438363s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.954332645s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.954426558s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.949968241s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.949895961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","ticker":"1.951510418s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.950014004s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","ticker":"1.953403276s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.950014004s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.951502633s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.952561368s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.946952338s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.952561368s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.953295347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.953341891s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.953295347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.953341891s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.952516884s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.952516884s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.956629961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.956629961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pafen0x39 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.947674644s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.95053052s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.947674644s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.95053052s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","time":"2023-09-06T10:25:30+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.949943323s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.951410808s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949759877s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.949943323s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947048466s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.951410808s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949759877s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947048466s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.946297385s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.953630748s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.94624769s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.946297385s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.946341187s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.953630748s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.94624769s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.946341187s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949333638s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.95281211s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947770636s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.95281211s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949306347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949333638s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947770636s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","time":"2023-09-06T10:25:30+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949306347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947724488s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","time":"2023-09-06T10:25:30+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949788084s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947724488s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949365222s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949788084s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.952612589s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947002386s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.958319832s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.952612589s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.950578616s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.958319832s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.950578616s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.950079955s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949365222s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947002386s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.952762425s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.950079955s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.952762425s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949821558s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.956741553s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949821558s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.953567621s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.956741553s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.953567621s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.950641011s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.950641011s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 7/0/propose/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.958431828s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.958431828s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.949992961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.949992961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.953687203s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.953687203s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.962210837s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.962199834s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.962110335s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.959913041s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.959866031s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.959787438s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.957900492s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.95784609s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.957796717s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.957172301s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.957161527s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.95707633s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.956575722s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.956546099s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.95656058s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.956489535s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.956476789s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.956442277s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.955648285s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.955591504s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.955530622s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.955510305s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.95545831s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.955405977s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.954895494s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.954850399s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.954804176s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.954778302s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.954732904s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.954686701s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.952560106s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.952510384s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.952463985s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.951986697s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.951936454s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.951888159s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.951791558s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.951743896s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.951699881s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.95121065s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.951162056s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.951115261s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.950979209s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.950916966s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.950852123s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.950610759s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.950577476s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.950529366s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:30+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:30+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:30+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:30+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:30+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:30+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:31+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:31+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:31+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:31+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:31+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:31+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:31+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:31+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","ticker":"1.950979209s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.950916966s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","ticker":"1.956575722s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","ticker":"1.955648285s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.962199834s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.954804176s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.959866031s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.951699881s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.951888159s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.952510384s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.950577476s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.952510384s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","ticker":"1.959913041s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.956442277s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.957161527s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.957161527s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.956489535s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.956489535s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.951743896s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.951743896s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.95545831s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.95545831s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.954732904s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.954732904s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p598fm5tg 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.950529366s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951162056s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.957796717s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.950529366s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951162056s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.957796717s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.95707633s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.951115261s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.955591504s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.955530622s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.955530622s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951936454s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.951115261s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.955591504s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","time":"2023-09-06T10:25:32+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.962110335s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951936454s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.956476789s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.954850399s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.962110335s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.950610759s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.95707633s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.954850399s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.95656058s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.950610759s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.952463985s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.95784609s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.95656058s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.95121065s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.952463985s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.95784609s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.950852123s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.950852123s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.956476789s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.95121065s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","time":"2023-09-06T10:25:32+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.951986697s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.951986697s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.957172301s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.957172301s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.951791558s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.959787438s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.951791558s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.959787438s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","time":"2023-09-06T10:25:32+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.952560106s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.954686701s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.952560106s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.954778302s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.954686701s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.954778302s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.955405977s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.956546099s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.955405977s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.956546099s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.955510305s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.955510305s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 8/0/propose/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.962210837s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.962210837s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.954895494s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.954895494s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.957900492s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.957900492s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1psgn080ye 8/0/prepare/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} +{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.95422839s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.954228242s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.954208256s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.954216602s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.954099042s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.954080381s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.953737466s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.953627011s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.953545554s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","address":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","power":1,"tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.950635576s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.950598522s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.950568476s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.950303783s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.950251809s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.950204446s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.950157434s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.95012464s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.950075418s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.949699648s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.949645269s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.949599937s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.94957678s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.949523932s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.949482202s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.948916713s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.948867229s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.948820171s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1psgn080ye 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.947672552s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.94757921s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.947490166s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.944467761s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.94440872s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.944336206s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"ADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.943672323s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.943617356s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.943572659s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.942957642s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.942912134s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.942871686s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"ADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"ADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.940519258s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.940481918s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.940442056s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.937973918s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.937973161s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.937911727s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.937904119s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.937857398s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.937855402s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0}","time":"2023-09-06T10:25:32+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","ours":0,"peer":0,"time":"2023-09-06T10:25:32+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0}","time":"2023-09-06T10:25:32+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","ours":0,"peer":0,"time":"2023-09-06T10:25:32+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0}","time":"2023-09-06T10:25:32+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","ours":0,"peer":0,"time":"2023-09-06T10:25:32+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ E322A027F71E ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 500000}","err":"invalid fee: fee is wrong, expected: 1000, got: 0","time":"2023-09-06T10:25:33+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06BA46D274AF ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1pcwtnvgy9 50000000}","err":"insufficient funds","time":"2023-09-06T10:25:33+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"D62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"D62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"D62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"CAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"CAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"CAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.954216602s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.949482202s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.954208256s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","ticker":"1.95422839s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","ticker":"1.953737466s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.949599937s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.94440872s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.937911727s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","ticker":"1.944467761s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.940442056s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","ticker":"1.940519258s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.940442056s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.947490166s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.950075418s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.954080381s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.943617356s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.954080381s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.943617356s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.950204446s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.942912134s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.950204446s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.940481918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.948867229s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.942912134s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.940481918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.948867229s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.949523932s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.949645269s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.949523932s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.949645269s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.94757921s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.937904119s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.94757921s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.937904119s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.950251809s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.950251809s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","time":"2023-09-06T10:25:34+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.950303783s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.950303783s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.954228242s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.954228242s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.94957678s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.94957678s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pafen0x39 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.95012464s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.948820171s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.95012464s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.948820171s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.950568476s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","time":"2023-09-06T10:25:34+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.937855402s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.950598522s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.937855402s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.950598522s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.937973161s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.954099042s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.937973161s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.953627011s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.950568476s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.954099042s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.953627011s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","time":"2023-09-06T10:25:34+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.948916713s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.937857398s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.948916713s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.937973918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.937857398s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.937973918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.949699648s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.953545554s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.949699648s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950157434s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.953545554s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950157434s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950635576s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950635576s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid transaction: validator is in committee","time":"2023-09-06T10:25:34+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.944336206s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.944336206s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.943572659s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.943572659s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.942871686s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.942871686s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 9/0/propose/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1psgn080ye 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.942957642s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.942957642s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.943672323s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.943672323s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.947672552s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.947672552s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"parsing Proposal message"} +{"level":"info","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} +{"level":"info","_consensus":"{pc1p54qca6v4 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.909124685s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.909075723s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.90897931s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} +{"level":"info","_consensus":"{pc1p598fm5tg 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.90872069s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.90870978s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.90862535s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} +{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} +{"level":"info","_consensus":"{pc1psgn080ye 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.902230129s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.902185398s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.902103398s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.902029075s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.902000449s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.901892039s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.870170518s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.87010798s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.870058512s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.869810802s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.869770081s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.869714847s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.855730909s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.855685984s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.855655454s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.855624127s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.855570173s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.855520981s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.838137358s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.838090973s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:34+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.838042101s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.835402439s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.835345844s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.835297014s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.826115008s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.826062147s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.826020276s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.825532239s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.825479103s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.825424575s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.794793046s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.794736834s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.794695088s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:34+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:34+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.791738066s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.791682768s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.79163825s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.786094354s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.786025764s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.785977685s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:34+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:34+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.783038087s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.782983741s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.782937861s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:34+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:34+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:35+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:35+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:35+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:35+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:35+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:35+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:35+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:35+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:35+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.902185398s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","ticker":"1.794793046s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","ticker":"1.835402439s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.902103398s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.838042101s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.838090973s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.87010798s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.87010798s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.782983741s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","ticker":"1.90872069s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.785977685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.782983741s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.902000449s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.79163825s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.785977685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.902000449s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","ticker":"1.786094354s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.826062147s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.869714847s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.869714847s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.835345844s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.835345844s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.855655454s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.791682768s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.901892039s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.901892039s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.786025764s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.786025764s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.869770081s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.869770081s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pafen0x39 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.855685984s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.855685984s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.794695088s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","time":"2023-09-06T10:25:36+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.794695088s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.855730909s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.855730909s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.826020276s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.855520981s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.826020276s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.909124685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.855520981s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.855570173s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.794736834s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.90897931s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.909124685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","time":"2023-09-06T10:25:36+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.855570173s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.794736834s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.825424575s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.90897931s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.825424575s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.855624127s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.826115008s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.909075723s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.855624127s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.909075723s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.826115008s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.791738066s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.825479103s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.90862535s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.791738066s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.90862535s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.825479103s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.825532239s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.825532239s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.90870978s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.90870978s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.870058512s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.870058512s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","time":"2023-09-06T10:25:36+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.782937861s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.902230129s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.902230129s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.782937861s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.870170518s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.835297014s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.870170518s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.835297014s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.783038087s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.783038087s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/propose/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.869810802s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.869810802s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.838137358s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.838137358s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.902029075s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.902029075s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 10/0/prepare/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.960786099s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.960774781s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.960686677s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.958697064s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.958690589s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.958601467s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.956711176s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.956655516s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.956609113s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.955147385s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.955113052s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.955081723s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} +{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.949235081s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.94913264s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.949051776s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.948823377s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.948787443s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.94867986s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.947799421s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.947771569s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.947735038s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.947717778s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.94768128s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.947668165s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.94695291s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.946954036s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.946895343s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.946893909s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.946842072s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.946843352s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.94588619s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.945833453s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.945789402s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.945172947s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.945114161s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.945068954s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.944947898s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.944886883s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.944853878s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.944443991s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.944396798s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.944353255s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.944349632s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.944321442s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.94429343s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.943885325s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.943853272s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.943824681s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:36+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:36+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:36+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:36+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:36+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:36+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:36+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:37+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:37+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:37+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:37+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:37+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:37+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:37+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:37+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.948787443s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.945789402s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","ticker":"1.958697064s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","ticker":"1.947799421s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.945114161s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","ticker":"1.948823377s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.958690589s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.945068954s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.94768128s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.958601467s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.945068954s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.94867986s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","ticker":"1.945172947s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.946893909s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.949051776s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.949051776s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.944396798s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.944349632s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.944396798s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944321442s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.944349632s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944321442s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.945833453s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.945833453s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.943853272s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.94913264s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.943853272s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.94913264s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944886883s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944886883s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.946842072s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.946842072s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.955113052s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.960686677s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.955113052s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.947735038s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.960686677s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.955081723s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.94429343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.947735038s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.955081723s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","time":"2023-09-06T10:25:38+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.94429343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.956609113s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","time":"2023-09-06T10:25:38+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.960774781s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.956609113s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.947668165s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.944853878s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.960774781s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.943885325s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.947668165s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.943885325s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","time":"2023-09-06T10:25:38+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.944853878s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.946895343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.955147385s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.946843352s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.946895343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.944443991s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.956655516s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.944443991s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944353255s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.955147385s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.947717778s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.956655516s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944353255s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.946843352s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.943824681s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.947717778s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.94588619s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.94695291s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.943824681s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.94588619s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.94695291s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944947898s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944947898s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.947771569s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.947771569s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.949235081s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.949235081s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 11/0/propose/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.946954036s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.946954036s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.960786099s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.960786099s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.956711176s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.956711176s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 11/0/prepare/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.953701779s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.95369401s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.95357347s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} +{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.951766323s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.951753946s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.951650787s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.950989646s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.950860179s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.950772994s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.949161542s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.949101334s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.949049913s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.948365754s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.948309741s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.948258742s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.947964682s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.947915634s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.947868187s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.947223317s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.947168261s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.947125625s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.946494561s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.946443364s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.946389516s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.946043872s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.946036708s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.945926124s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.945725591s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.945673714s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.945627357s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.944508514s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.944507953s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.944476954s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.94444054s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.944430281s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.944419003s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.944383583s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.944384735s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.944368713s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.94230647s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.942258823s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.942210436s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.941601408s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.941555555s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.941508669s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.940897878s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.940839954s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.940810097s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0}","time":"2023-09-06T10:25:39+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","ours":0,"peer":0,"time":"2023-09-06T10:25:39+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0}","time":"2023-09-06T10:25:39+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","ours":0,"peer":0,"time":"2023-09-06T10:25:39+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0}","time":"2023-09-06T10:25:39+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","ours":0,"peer":0,"time":"2023-09-06T10:25:39+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.946036708s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","ticker":"1.948365754s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","ticker":"1.944508514s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","ticker":"1.946043872s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.95369401s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.945627357s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.940810097s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.947125625s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.946443364s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.940839954s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.940839954s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.948258742s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.942258823s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","ticker":"1.944476954s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.944419003s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.942258823s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.944368713s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.944368713s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.941555555s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.941555555s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.947868187s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.947868187s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947168261s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.951650787s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947168261s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.951650787s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947915634s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947915634s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.951753946s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.951753946s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.949101334s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.949101334s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.944383583s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","time":"2023-09-06T10:25:40+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.944430281s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.944383583s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.944430281s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.944507953s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.949049913s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.944507953s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.949049913s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.948309741s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.95357347s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.948309741s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.95357347s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.953701779s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.953701779s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.949161542s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.949161542s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p598fm5tg 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.946389516s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.946389516s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.944384735s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.945673714s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.944384735s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.945673714s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.950772994s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.94444054s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.950772994s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.94444054s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.950860179s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.950860179s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","time":"2023-09-06T10:25:40+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.941601408s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.941601408s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.942210436s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.940897878s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.942210436s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.940897878s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.941508669s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.94230647s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.94230647s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.941508669s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","time":"2023-09-06T10:25:40+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.945926124s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947223317s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.945926124s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947223317s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947964682s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947964682s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.951766323s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.951766323s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 12/0/propose/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.950989646s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.950989646s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.946494561s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.946494561s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.945725591s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.945725591s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 12/0/prepare/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.957236349s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.957224226s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.957118638s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} +{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.952488326s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.952460666s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.952449382s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.952459851s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.952350001s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.952347962s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.950944274s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.950889102s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.950812216s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.950316981s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.950271096s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.950230924s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.949935182s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.949928527s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.949835179s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.948463747s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.948403312s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.948357621s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.948345726s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.948335707s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.948302735s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.9482844s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.948250494s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.948237879s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.947638665s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.947593738s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.947560618s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.947553566s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.947497666s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.947452946s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.946874123s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.946826659s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.946776346s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.946774332s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.946725068s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.946681619s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.945628854s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.945584568s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.945544064s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.944960638s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.944918086s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.944781556s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.944176817s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.944144463s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.944117774s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:40+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:40+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:40+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:40+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:40+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:40+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:41+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:41+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:41+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:41+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:41+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:41+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:41+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:41+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.949928527s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","ticker":"1.952460666s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","ticker":"1.957236349s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","ticker":"1.949935182s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.950230924s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","ticker":"1.952488326s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.946826659s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.944117774s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.947553566s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.950271096s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.9482844s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944144463s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.946681619s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944144463s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944918086s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944918086s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.945584568s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.945584568s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","time":"2023-09-06T10:25:42+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.948237879s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.946725068s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.948237879s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.946725068s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.946774332s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.952350001s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.946774332s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.947497666s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.952350001s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.947560618s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.947497666s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.947452946s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.952449382s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.947452946s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.952449382s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.947560618s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.948335707s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.945544064s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.948335707s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.945544064s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","time":"2023-09-06T10:25:42+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.944781556s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944176817s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.944781556s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944176817s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.949835179s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944960638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944960638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.949835179s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.945628854s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.945628854s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.948345726s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.948345726s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.952459851s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.950812216s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.952459851s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","time":"2023-09-06T10:25:42+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.950812216s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.947593738s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950316981s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.957118638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.947593738s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950316981s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.957118638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.948302735s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950944274s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.948302735s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950944274s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.950889102s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.950889102s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.948463747s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.948463747s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.948403312s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.948403312s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.957224226s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.957224226s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.948250494s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.948250494s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.952347962s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.952347962s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.946776346s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.946776346s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 13/0/propose/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.946874123s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.946874123s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.947638665s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.947638665s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.948357621s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.948357621s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} +{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.957664352s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.957642079s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.957649926s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.957634631s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.957525749s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.957505265s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.953963535s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.953961794s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.953921967s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.953895107s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.953864455s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.953872645s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.949044614s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.948998093s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.94890353s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.947700058s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.947655105s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.947594217s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.947448289s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.947387056s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.947333335s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.946865839s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.946854258s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.946761748s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.945563894s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.945524416s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.945465292s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.945404358s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.945351272s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.945302353s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.945189477s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.945139411s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.945094844s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.944624955s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.944575855s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.944531317s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.943896343s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.94384918s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.943811379s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.943042739s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.942996016s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.942955776s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.942366492s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.942322306s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.942276064s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.941681587s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.941638318s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.941597632s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0}","time":"2023-09-06T10:25:42+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","ours":0,"peer":0,"time":"2023-09-06T10:25:42+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0}","time":"2023-09-06T10:25:42+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0}","time":"2023-09-06T10:25:42+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","ours":0,"peer":0,"time":"2023-09-06T10:25:42+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","ours":0,"peer":0,"time":"2023-09-06T10:25:42+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","ticker":"1.945563894s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.946854258s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","ticker":"1.957642079s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.947594217s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.945302353s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.957634631s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.957649926s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.945139411s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.944531317s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.942955776s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","ticker":"1.949044614s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942322306s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.944575855s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.94890353s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.944575855s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","ticker":"1.946865839s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942322306s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.941638318s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.941638318s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.948998093s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.948998093s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942996016s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.942276064s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.94890353s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942996016s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.94384918s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.94384918s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.945094844s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.942276064s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.945094844s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.941597632s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.943811379s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.941597632s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.943811379s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.946761748s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.946761748s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.945351272s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.953864455s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.945351272s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.953864455s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.953895107s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.947333335s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.953895107s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.947333335s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.947387056s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.957505265s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.947387056s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.957505265s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.945465292s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pafen0x39 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.945465292s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.957525749s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.945524416s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.957525749s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.945524416s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.953872645s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.953872645s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.947655105s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","time":"2023-09-06T10:25:44+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.947655105s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","time":"2023-09-06T10:25:44+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.957664352s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","time":"2023-09-06T10:25:44+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.953921967s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.957664352s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.945189477s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.953921967s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.945189477s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.942366492s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.943896343s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.942366492s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.943896343s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.947700058s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.941681587s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.947700058s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.944624955s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.941681587s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.953963535s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.944624955s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.943042739s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.953963535s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.943042739s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/propose/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.947448289s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.947448289s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.953961794s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.953961794s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.945404358s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.945404358s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 14/0/prepare/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.958428732s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.958418355s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.958314727s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.954352251s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.954340834s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.954256768s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.952871634s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.952814837s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.952762005s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.952034497s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.952028907s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.951948929s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.951072218s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.951011601s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.950961448s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.950420519s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.950367579s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.950319484s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.950320563s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.950253211s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.950207605s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.949728044s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.949721057s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.949638131s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.948488049s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.948444529s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.948412759s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.948193414s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.948199121s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.948157391s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.948145139s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.948110712s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.948100331s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.947661509s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.947629103s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.947582245s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.946977999s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.946923749s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.946875661s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.946095866s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.946048127s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.946002785s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.945412963s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.945367597s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.945327264s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.944747185s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.944703528s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.944662632s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:44+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:44+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:44+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:44+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:44+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:44+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:44+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:45+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:45+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:45+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:45+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:45+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:45+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:45+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:45+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:45+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.952028907s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","ticker":"1.949728044s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.950207605s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.949721057s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","ticker":"1.948199121s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.958418355s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.948110712s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","ticker":"1.954352251s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.958314727s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","ticker":"1.946977999s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.950961448s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.951011601s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.950961448s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.946875661s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.954256768s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.946875661s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.954256768s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.944662632s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.947582245s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.948412759s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.947582245s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.948412759s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.951948929s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.947629103s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.951948929s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.947629103s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.948157391s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.948157391s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.946923749s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.946923749s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","time":"2023-09-06T10:25:46+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.947661509s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.947661509s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.948193414s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.948100331s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.948100331s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.948193414s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","time":"2023-09-06T10:25:46+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.950319484s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.948145139s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.958428732s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.952034497s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.950319484s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.948145139s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.958428732s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.952034497s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.950367579s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.952762005s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.952871634s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.950367579s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.952762005s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.952871634s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.952814837s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.952814837s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.950420519s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.950420519s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.944703528s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.944703528s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.945327264s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.945367597s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.945327264s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.945367597s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.946002785s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.946048127s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.946002785s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.946048127s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.949638131s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","time":"2023-09-06T10:25:46+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.949638131s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.950253211s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.950320563s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.950253211s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.950320563s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.948488049s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.948444529s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.948488049s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.948444529s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.951072218s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.951072218s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.954340834s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.954340834s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 15/0/propose/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.944747185s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.944747185s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.945412963s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.945412963s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.946095866s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.946095866s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 15/0/prepare/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.959971149s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.959956586s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.959867429s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.958546578s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.958535991s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.95843833s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.955814146s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.955750325s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.955704056s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.954774667s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.954725942s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.954672249s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} +{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.949173332s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.949123999s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.949030658s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1psgn080ye 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.948392379s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.948379594s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.948278327s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.947719516s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.947685545s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.947619385s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.947666637s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.947563403s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.947508809s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.946911267s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.946857119s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.946809846s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.946781319s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.946729193s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.946681888s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.945296016s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.945239813s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.945190501s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.944547203s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.944511598s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.944485707s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.944472591s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.944435051s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.944428161s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.943944484s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.943911333s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.943881272s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.943807525s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.943755697s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.94370464s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.943263584s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.943210692s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.943163518s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:46+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:46+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:46+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:46+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:46+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:46+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:46+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:47+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:47+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:47+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:47+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:47+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:47+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:47+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:47+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.948379594s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","ticker":"1.958546578s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","ticker":"1.959971149s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.954725942s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","ticker":"1.948392379s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.955704056s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.946809846s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","ticker":"1.949173332s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.949030658s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.945239813s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.955750325s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943911333s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.943163518s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943911333s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943210692s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943210692s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.944472591s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.944472591s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p598fm5tg 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.947508809s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pafen0x39 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.947508809s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.94370464s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.946681888s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.94370464s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.946681888s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","time":"2023-09-06T10:25:48+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.945190501s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.943755697s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.945190501s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.945296016s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.943755697s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.944435051s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.945296016s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.944435051s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.949123999s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.959867429s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.943807525s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.949123999s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.959867429s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.943807525s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.944485707s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.944547203s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.944485707s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.944547203s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.947619385s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.947619385s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.958535991s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.948278327s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.958535991s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.948278327s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","time":"2023-09-06T10:25:48+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.954672249s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.943881272s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.954774667s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.954672249s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.943881272s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","time":"2023-09-06T10:25:48+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.946857119s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.944428161s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.954774667s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943263584s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.947563403s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943263584s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.947563403s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.946911267s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943944484s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.946857119s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943944484s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.95843833s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.944428161s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.946911267s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.95843833s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.944511598s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.947685545s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.944511598s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.947685545s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.959956586s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.959956586s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.946729193s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.946729193s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.947666637s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.947666637s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 16/0/propose/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.955814146s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.955814146s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.946781319s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.946781319s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.947719516s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.947719516s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1psgn080ye 16/0/prepare/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.962090012s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.962076403s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.961978892s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.960200555s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.960190023s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.960092491s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.958660511s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.958608171s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.958562466s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.955560817s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.955508145s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.955452422s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.954330512s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.954323929s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.954246465s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.953032201s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.952972718s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.952910083s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.952895204s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.952842605s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.952796423s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.952381382s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.952375196s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.952278854s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.951161435s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.951164496s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.951124688s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.951118889s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.951094825s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.951065467s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.950668598s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.950613s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.95056203s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.949952498s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.949907585s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.949855328s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.949245202s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.949192166s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.949141291s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.948780003s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.948733367s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.94868704s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.948075611s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.948030166s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.947982769s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.947362228s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.94731038s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.947262033s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0}","time":"2023-09-06T10:25:49+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","ours":0,"peer":0,"time":"2023-09-06T10:25:49+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0}","time":"2023-09-06T10:25:49+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","ours":0,"peer":0,"time":"2023-09-06T10:25:49+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0}","time":"2023-09-06T10:25:49+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","ours":0,"peer":0,"time":"2023-09-06T10:25:49+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.954323929s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.960190023s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.958608171s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pafen0x39 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.954246465s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.955508145s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","ticker":"1.948780003s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.955508145s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.951065467s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.951124688s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","ticker":"1.952895204s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.951124688s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.951118889s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949855328s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.951118889s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.94868704s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.948733367s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.952972718s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949855328s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.952796423s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","ticker":"1.962090012s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.952972718s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949141291s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.952796423s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949907585s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949141291s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.952842605s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","ticker":"1.954330512s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.960092491s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.962076403s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.95056203s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.962076403s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.960092491s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949907585s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.95056203s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.952842605s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949192166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.955452422s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.961978892s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.955452422s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949192166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.950613s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.950613s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"our turn to propose"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947262033s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947262033s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.94731038s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947982769s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.94731038s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947982769s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","time":"2023-09-06T10:25:50+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.948030166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.952278854s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.951164496s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.948030166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.952278854s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.951164496s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.952375196s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.960200555s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.952375196s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.960200555s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.955560817s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.955560817s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.951094825s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.951094825s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.958562466s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","time":"2023-09-06T10:25:50+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.958562466s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","time":"2023-09-06T10:25:50+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.952910083s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949245202s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.951161435s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.952910083s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949245202s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.951161435s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.958660511s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.950668598s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.958660511s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.950668598s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.953032201s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949952498s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949952498s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.953032201s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 17/0/propose/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1psgn080ye 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.947362228s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.947362228s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.952381382s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.952381382s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.948075611s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.948075611s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.960678001s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.960666304s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.960555898s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.958298038s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.958291108s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.958200176s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.956967236s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.95691956s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.956870699s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.954996949s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.954944919s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.954900724s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.949515889s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"sortition transaction broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.949466768s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.949384031s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.948103098s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.948038771s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.948034658s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.947987063s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.947976664s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.947930786s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.946616129s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.946440484s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.946358572s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.946099208s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.946039876s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.945988307s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.945222942s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.945164701s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.945113644s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.942331697s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.942271855s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.942225506s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"parsing Transactions message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.941541711s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.941485392s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.941438863s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.940757335s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.940707411s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.940662964s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.940394131s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.940346017s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.940295902s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.938908983s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.938851054s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.938801346s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.937902874s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.937855778s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.937814456s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:50+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:50+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:50+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:50+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:50+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:50+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:51+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:51+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:51+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:51+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:51+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:51+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:51+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:51+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","ticker":"1.941541711s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.940295902s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.938851054s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","ticker":"1.949515889s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","ticker":"1.956967236s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.949466768s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.958291108s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.949466768s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.945164701s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.945164701s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.954944919s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","ticker":"1.958298038s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.954944919s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.940346017s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.940346017s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.947976664s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.947976664s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.941438863s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.946039876s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.946039876s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.945113644s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.940707411s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.960555898s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.95691956s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.947930786s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.947930786s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.954900724s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.954900724s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.958200176s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.958200176s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"our turn to propose"} +{"level":"info","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.942225506s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.942225506s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.941485392s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.941485392s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.940662964s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.940662964s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.942271855s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.942271855s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.946358572s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.946358572s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.946440484s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.946440484s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","time":"2023-09-06T10:25:52+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.954996949s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.954996949s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.948034658s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.948034658s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.940394131s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.949384031s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.940394131s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.956870699s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.949384031s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.956870699s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.945988307s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.937814456s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","time":"2023-09-06T10:25:52+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.945988307s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.937814456s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","time":"2023-09-06T10:25:52+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.960666304s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.937902874s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.947987063s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.946099208s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.937902874s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.947987063s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.938801346s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.946099208s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.960678001s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.938801346s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.960666304s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.960678001s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.938908983s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.937855778s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.938908983s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.948103098s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.937855778s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.948103098s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.945222942s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.945222942s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.948038771s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.948038771s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/propose/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.946616129s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.946616129s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.940757335s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.940757335s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.942331697s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.942331697s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"parsing Proposal message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"parsing Proposal message"} +{"level":"info","_consensus":"{pc1psgn080ye 18/0/prepare/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.947119609s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.947111948s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.947000966s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.946488823s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.946058248s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.945964199s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.940885497s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.940826988s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.940796204s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.94077835s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.940727431s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.940679716s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.925956093s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"sortition transaction broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.925914115s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.9258308s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.921811039s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.921687755s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.921476017s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.91814615s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.918092848s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.918046205s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.915601117s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.915559697s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.915521881s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.914600872s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.91455366s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.914502276s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.913410673s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.913352783s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.913302004s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.913223331s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.913175162s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.913131199s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"CA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"CA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"CA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.90849668s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.908445129s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.908400135s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.907640515s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.907591868s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.907544047s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.906298752s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.906262407s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.906233439s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.90055822s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.900493032s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.900442959s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.897777484s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.897743419s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.897715078s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0}","time":"2023-09-06T10:25:52+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","ours":0,"peer":0,"time":"2023-09-06T10:25:52+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0}","time":"2023-09-06T10:25:52+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0}","time":"2023-09-06T10:25:52+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","ours":0,"peer":0,"time":"2023-09-06T10:25:52+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","ours":0,"peer":0,"time":"2023-09-06T10:25:52+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","ticker":"1.921811039s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.921687755s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.947111948s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.946058248s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","ticker":"1.947119609s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.921476017s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","ticker":"1.946488823s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.900442959s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.906262407s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.9258308s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.940796204s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.940826988s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.940679716s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.918092848s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.940826988s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.940679716s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.918046205s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1psgn080ye 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.947000966s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.915559697s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.947000966s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.913175162s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.915559697s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.913175162s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.913302004s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.907591868s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.918092848s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.913302004s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.897743419s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.897743419s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.91455366s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.897715078s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.913352783s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.908445129s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.897715078s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.918046205s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.94077835s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.91455366s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.907640515s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.913131199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.906233439s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.94077835s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.907640515s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.908445129s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.907591868s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.906233439s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.925914115s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.90055822s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.915601117s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.90055822s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.914502276s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.913352783s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.925914115s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.913131199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.913410673s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.914502276s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.915601117s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.913410673s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.907544047s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","ticker":"1.906298752s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.908400135s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.940727431s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.907544047s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.940885497s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.908400135s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.940727431s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.940885497s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.915521881s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.900493032s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.915521881s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.900493032s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.945964199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.945964199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.925956093s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.925956093s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.914600872s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.914600872s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.91814615s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.91814615s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 19/0/propose/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.90849668s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.90849668s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.897777484s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.897777484s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.913223331s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.913223331s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"parsing Proposal message"} +{"level":"info","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.931453539s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","height":19,"time":"2023-09-06T10:25:54+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.931220468s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.931138441s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.931141908s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.931034088s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.92604418s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} +{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.91486406s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.91485211s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.914754819s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.914709674s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.914679625s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.914589768s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1psgn080ye 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.913511567s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.913507897s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.913412552s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.905659003s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.905585413s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.905538159s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.904807761s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.904747653s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.904697399s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.902331222s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.90227762s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.90223193s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.900243646s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.900183103s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.900128343s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.898855228s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.89881588s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.898763324s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.894791719s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.894756615s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.894725203s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.893628359s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.893576541s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.893529731s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.892991926s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.892941786s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.892890647s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.889960333s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.889913614s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.889871662s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.887142088s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.887095278s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.887046572s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.88630553s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.886252696s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.886207928s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.884990037s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.884938709s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.884895109s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.877636573s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.877584549s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.877530223s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.876362288s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.876313016s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.876268274s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.872193044s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.872158594s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.872129768s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:54+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:54+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:54+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:54+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:54+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:54+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:54+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:55+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:55+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:55+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:55+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:55+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:55+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:55+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:55+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:55+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","ticker":"1.904807761s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","ticker":"1.877530223s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.91485211s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","ticker":"1.91486406s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.914679625s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pafen0x39 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","ticker":"1.889960333s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.892890647s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.876313016s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.893529731s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.876313016s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","ticker":"1.872193044s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.905538159s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.90227762s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.90227762s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.892991926s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.904697399s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"our turn to propose"} +{"level":"warn","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.904697399s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.884938709s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.889913614s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"warn","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.884938709s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.889913614s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.898763324s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.889871662s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.893576541s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.898763324s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.894756615s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.889871662s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.893576541s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.894756615s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.89881588s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.887046572s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.894725203s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.887046572s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.894725203s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.913412552s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.913412552s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.905585413s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.904747653s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.905585413s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"warn","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.886207928s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.904747653s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"warn","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.900183103s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.900128343s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.892941786s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.900183103s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.900128343s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.892941786s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.931138441s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.886207928s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.914589768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.914589768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.892991926s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.902331222s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.92604418s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.913507897s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.898855228s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.913507897s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.898855228s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.872158594s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.887095278s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.887095278s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.902331222s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.92604418s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.884895109s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.872129768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.876362288s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.884895109s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.876362288s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.872158594s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.90223193s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.877584549s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.893628359s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.88630553s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.893628359s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.90223193s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.877584549s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.88630553s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.884990037s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.887142088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.876268274s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.887142088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.872129768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.877636573s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.876268274s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.913511567s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.877636573s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.931453539s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.913511567s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.914754819s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.931453539s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.886252696s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.884990037s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931141908s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.886252696s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931141908s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931220468s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931220468s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.931034088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.914754819s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.931034088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 20/0/propose/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.914709674s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.914709674s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.900243646s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.900243646s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.894791719s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.894791719s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.905659003s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.905659003s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.92403074s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.924017738s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.923902539s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.917026763s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.917014085s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.916915931s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.915548132s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.915489333s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.915437849s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_consensus":"{pc1p54qca6v4 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.905855394s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.905843083s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.905801502s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.905825972s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.905754428s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.905706348s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.90423166s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.904162697s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.904168596s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.904114313s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.90407657s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.90401523s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.900663987s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.900649011s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.900551398s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.899207799s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.899151464s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.899129829s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.899104467s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.899073286s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.899024116s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.89240406s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.892364205s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.892332381s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.891923634s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.89189026s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.891862544s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.891472912s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.891442888s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.891415729s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.888217793s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.888169597s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.888110754s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.887663623s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.887615999s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.887568579s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.886942486s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.886897829s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.886858732s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:56+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:56+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:56+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:56+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:56+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:56+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:56+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:57+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:57+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:57+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:57+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:57+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:57+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:57+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:57+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","ticker":"1.900663987s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","ticker":"1.899207799s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.900649011s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.90407657s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","ticker":"1.905801502s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","ticker":"1.888110754s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","ticker":"1.905843083s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.90401523s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","ticker":"1.892332381s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.892364205s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","ticker":"1.899129829s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.923902539s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.923902539s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.904114313s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.899024116s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.924017738s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.899024116s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.924017738s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.915437849s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.915437849s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.899073286s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.899073286s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.915489333s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.915489333s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1pafen0x39 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.891442888s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.891442888s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.89189026s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.905855394s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.89189026s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.905855394s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.905825972s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.90423166s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.905825972s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.916915931s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.904162697s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.90423166s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.916915931s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.904162697s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.917026763s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.905706348s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.917026763s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.905706348s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.905754428s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891415729s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.917014085s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.905754428s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891415729s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.917014085s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.899104467s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891862544s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.899151464s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.899104467s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891862544s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.899151464s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891472912s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891472912s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.89240406s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.89240406s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.886897829s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.886897829s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891923634s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891923634s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.887615999s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.887615999s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.888169597s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.886942486s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.888169597s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.886942486s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.886858732s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.886858732s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.888217793s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.888217793s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.887568579s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.887568579s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.887663623s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.900551398s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.887663623s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.900551398s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 21/0/propose/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.915548132s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.915548132s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.904168596s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.904168596s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.92403074s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.92403074s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.918918162s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.918710424s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.918611908s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.910729148s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.91070253s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.910601827s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.909373175s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.909317422s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.909270126s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.907081417s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.90650096s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.906496628s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.906403989s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.905795573s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.905735171s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.905637086s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.905001072s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.904953622s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.904911643s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","height":21,"time":"2023-09-06T10:25:58+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.904355925s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.904267888s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.904350598s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.904172354s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.904114363s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.90295169s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.90290214s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.902853085s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.894556655s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.894518906s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.894489772s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.894002662s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.893968432s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.893922307s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.893563589s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.893507722s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.893461475s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.893451558s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.893402595s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.893356916s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.892779833s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.892730436s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.892685522s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"parsing Transactions message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.891993165s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.891940592s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.891895029s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.891217402s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.891169004s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.891125239s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.889000959s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.88896733s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.88893899s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.888534741s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.888501707s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.888474526s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.88808506s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.888054572s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.888027704s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.887639324s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.88760905s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.887580044s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0}","time":"2023-09-06T10:25:59+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","ours":0,"peer":0,"time":"2023-09-06T10:25:59+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0}","time":"2023-09-06T10:25:59+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","ours":0,"peer":0,"time":"2023-09-06T10:25:59+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0}","time":"2023-09-06T10:25:59+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","ours":0,"peer":0,"time":"2023-09-06T10:25:59+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","ticker":"1.904355925s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.91070253s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.894489772s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.918710424s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","ticker":"1.90650096s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.906496628s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","ticker":"1.891125239s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.893507722s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","ticker":"1.88893899s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","ticker":"1.892779833s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.893507722s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.909317422s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","ticker":"1.918918162s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.909317422s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.918611908s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","ticker":"1.893451558s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.904953622s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891940592s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.904953622s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891940592s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.90290214s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891169004s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.90290214s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891169004s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.892730436s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.892730436s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.905735171s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.905735171s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893356916s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893356916s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893922307s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893922307s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904172354s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904172354s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894002662s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904114363s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894002662s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904114363s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893402595s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894556655s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893402595s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894556655s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.910601827s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.907081417s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.910601827s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.910729148s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.907081417s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.894518906s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.892685522s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.910729148s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.892685522s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.894518906s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891993165s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891993165s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893968432s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.891895029s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891217402s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.891895029s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891217402s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.893461475s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893968432s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.893563589s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.893461475s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.904350598s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.904350598s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.893563589s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.904267888s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.909270126s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.88808506s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.904267888s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.909270126s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888054572s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.909373175s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.88808506s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.887639324s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.887639324s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.909373175s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.905637086s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.905637086s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.90295169s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.889000959s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.90295169s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.889000959s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.904911643s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888054572s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905001072s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905001072s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.904911643s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888501707s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888501707s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.902853085s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88760905s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.902853085s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.888534741s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88760905s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.888534741s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88896733s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905795573s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88896733s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905795573s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/propose/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888027704s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888027704s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.887580044s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.887580044s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888474526s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888474526s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.906403989s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.906403989s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"parsing Proposal message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.909671941s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.909624918s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.909506968s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.891322911s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.89116431s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","height":22,"time":"2023-09-06T10:26:00+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.887796584s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.88778906s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.887666039s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.887657597s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p598fm5tg 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.881699476s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.881690773s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.881577412s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.880200474s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.880132473s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.880078078s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.87621614s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.876160925s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.876091441s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} +{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.872968593s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.872916378s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.872865154s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.872191604s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.872184857s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.872069877s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.869944073s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.869892139s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.869849375s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.866956622s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.866909653s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.866870288s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.866594739s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.866533709s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.866485601s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.865193293s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.865135592s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.865085629s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.863199508s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.863144261s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.863097565s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.856907547s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.856868659s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.856837931s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.855819775s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.85576971s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.855719948s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.853977443s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.853937332s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.853907771s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.851307699s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.851274978s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.851246742s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.845810895s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.845747456s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.845703104s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.842984481s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.842948008s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.842918109s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.840332772s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.840298345s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.840259901s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:00+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:00+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:00+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:00+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:00+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:00+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:01+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:01+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:01+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:01+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:01+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:01+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:01+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:01+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","ticker":"1.881699476s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","ticker":"1.887657597s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.89116431s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","ticker":"1.881690773s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.866485601s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} +{"level":"warn","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.853907771s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","ticker":"1.842918109s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","ticker":"1.87621614s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.909624918s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.85576971s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","ticker":"1.872191604s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} +{"level":"warn","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} +{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"warn","_consensus":"{pc1psgn080ye 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} +{"level":"warn","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","ticker":"1.88778906s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.856907547s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} +{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.856907547s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.863144261s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"warn","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.866870288s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.863144261s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.865193293s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.909506968s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.865193293s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.909506968s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.876160925s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"warn","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.876160925s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.845747456s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.866870288s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"our turn to propose"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.881577412s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.866533709s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.869849375s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.876091441s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.853977443s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.866533709s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.853977443s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.876091441s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.869849375s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.845747456s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.880132473s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.865135592s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.880132473s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.842948008s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.863097565s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.872865154s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.863097565s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.872916378s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.872916378s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.872865154s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.851307699s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.869892139s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.887796584s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.881577412s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.869892139s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.887796584s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.880078078s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.865135592s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.865085629s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.880078078s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.842948008s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.865085629s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.856868659s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.840298345s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.856868659s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.851246742s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.866909653s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.842984481s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.840298345s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.851246742s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.840259901s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.866909653s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.842984481s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.872184857s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.856837931s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.840259901s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.872184857s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.853937332s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.851307699s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.840332772s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.887666039s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.855719948s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.853937332s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.887666039s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.840332772s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.856837931s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.866594739s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.855719948s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.866594739s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.855819775s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.845703104s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.851274978s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.872968593s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.845703104s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.851274978s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.872968593s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.872069877s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.855819775s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.909671941s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.872069877s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.909671941s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.845810895s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.880200474s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.845810895s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.880200474s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:02+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/propose/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.863199508s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.863199508s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.869944073s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.869944073s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.866956622s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.866956622s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.891322911s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.891322911s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1psgn080ye 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.928174851s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.92812859s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.928021089s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.914860745s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.914773507s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.913614653s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.913576714s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.913545511s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","height":23,"time":"2023-09-06T10:26:02+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.912304936s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.912296202s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.912205053s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.912175483s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.910601094s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.910547538s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.91049978s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.909230475s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.909218941s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.909128544s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.908069376s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.908020272s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.907968968s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.899614145s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.899453803s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.898427593s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.898438966s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.89836638s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.89835129s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.898318333s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.898306182s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.897675623s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.897620219s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.897570088s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","height":23,"time":"2023-09-06T10:26:02+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.897259339s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.897249744s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.897161567s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.897121113s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.896918051s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.896862355s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.896807668s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_consensus":"{pc1psgn080ye 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.895899464s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.895861156s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.895812248s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.895734291s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.895680349s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.895630218s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.893282214s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.893245276s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.893215755s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.892824689s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.892792915s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.892764194s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.892380025s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.892350388s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.892313387s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.891903596s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.891871885s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.891843403s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.891834252s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.891784375s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.891753956s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.891458438s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.891426559s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.891399081s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.891137932s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.891082565s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.891047292s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.890571052s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.890523186s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.890486361s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.889876535s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.889831297s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.889793424s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0}","time":"2023-09-06T10:26:02+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","ours":0,"peer":0,"time":"2023-09-06T10:26:02+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0}","time":"2023-09-06T10:26:02+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0}","time":"2023-09-06T10:26:02+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","ours":0,"peer":0,"time":"2023-09-06T10:26:02+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","ours":0,"peer":0,"time":"2023-09-06T10:26:02+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","ticker":"1.912304936s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","ticker":"1.897259339s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.910601094s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.928021089s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","ticker":"1.913576714s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","ticker":"1.909230475s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.892792915s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.914773507s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.91049978s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.897161567s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.91049978s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","ticker":"1.891137932s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.913545511s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.913614653s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.913545511s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.913614653s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","ticker":"1.914860745s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.895812248s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.92812859s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.895812248s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.92812859s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.907968968s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.895899464s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","ticker":"1.909128544s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.907968968s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.895899464s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.908069376s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.898318333s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.908069376s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.898318333s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.898427593s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.898427593s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.895680349s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.895680349s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.896862355s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.896862355s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.912175483s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.912205053s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.912175483s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.912205053s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.895630218s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.897620219s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.897620219s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.895630218s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.89835129s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.895734291s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.895734291s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.89835129s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.896918051s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.897570088s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.896918051s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.897570088s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.896807668s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.912296202s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.912296202s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pafen0x39 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.896807668s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891784375s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891426559s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.898306182s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891426559s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.898306182s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891784375s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.892350388s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.890523186s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.892350388s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891871885s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891871885s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.893245276s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891458438s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.897675623s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891458438s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.897675623s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.890571052s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891753956s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891903596s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.898438966s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891753956s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.890571052s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891903596s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.893245276s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.898438966s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.889793424s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892380025s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.890523186s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.909218941s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.889793424s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892380025s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.909218941s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.890486361s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.889831297s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892824689s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.890486361s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.889831297s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892824689s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891047292s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.893215755s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.893282214s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891082565s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891047292s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.893282214s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891082565s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.893215755s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.897121113s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.889876535s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.897121113s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891843403s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.899453803s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891843403s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.889876535s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.899453803s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891399081s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891399081s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.891834252s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892764194s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.891834252s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892764194s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.899614145s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892313387s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.899614145s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892313387s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.897249744s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.897249744s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/propose/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.910547538s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.910547538s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.908020272s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.908020272s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.89836638s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.89836638s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.895861156s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.895861156s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.928174851s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.928174851s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"parsing Proposal message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.911241318s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.911227212s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.91112513s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.899379774s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.899364958s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.899268958s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.893902496s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.893859927s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.893829373s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p54qca6v4 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.891678041s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.891576898s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.88890026s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.88888919s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.88880088s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","height":24,"time":"2023-09-06T10:26:04+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.888156215s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.888148174s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.888055244s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"parsing Transactions message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.887882762s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.883348066s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.883294141s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.883248397s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.881560077s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.881511514s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.88146794s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.878793877s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.878758611s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.878710812s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.878281131s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.878224855s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.878175787s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.875810172s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.875773901s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.875745569s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.874723523s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.874675415s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.874624748s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.870494717s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.870442644s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.870387548s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.869545707s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.869494991s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.869450599s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.866110832s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.86606402s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.866012529s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.865776353s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.865725277s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.865677631s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.864824948s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.864768437s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.864722377s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.862977729s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.862930767s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.862880011s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.861074762s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.861022755s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.860977517s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.860257354s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.860213542s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.860173926s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:04+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:04+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:04+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:04+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:04+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:04+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:04+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:05+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:05+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:05+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:05+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:05+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:05+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:05+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:05+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:05+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","ticker":"1.899379774s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.911227212s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","ticker":"1.883248397s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","ticker":"1.862977729s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","ticker":"1.891678041s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.864768437s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","ticker":"1.881511514s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","ticker":"1.862880011s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.91112513s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.893902496s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","ticker":"1.888156215s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.893902496s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.862930767s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.888055244s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.878793877s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.888055244s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.870442644s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.878793877s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.891576898s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.875810172s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.891576898s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.875810172s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.869494991s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.881560077s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.869494991s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.881560077s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.860213542s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.860213542s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.88890026s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.88890026s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.86606402s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.878281131s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.86606402s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.878281131s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.878224855s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.874723523s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.878224855s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.866012529s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.874723523s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.866012529s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.888148174s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.866110832s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.874624748s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.88888919s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.866110832s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.888148174s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.874624748s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.88888919s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.860257354s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.874675415s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.88880088s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.860257354s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.874675415s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.88880088s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.869545707s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.878175787s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.878175787s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.869545707s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.864824948s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.864824948s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.865725277s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.865725277s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.861022755s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.861022755s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.883348066s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.893829373s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.883348066s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.883294141s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.893829373s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.861074762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.883294141s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.861074762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.875745569s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.899364958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.865677631s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.870494717s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.875745569s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.865677631s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.870494717s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.911241318s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.88146794s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.899364958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.860977517s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.911241318s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.865776353s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.88146794s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.860977517s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.865776353s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.893859927s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.878710812s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.870387548s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.893859927s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.870387548s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.878710812s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.875773901s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.899268958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.875773901s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.899268958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.878758611s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.878758611s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/propose/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.860173926s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.860173926s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.869450599s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.869450599s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.864722377s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.864722377s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.887882762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.887882762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1psgn080ye 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.909029454s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.909015742s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.908969579s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.908903743s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.908948159s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.908843345s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.901009439s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.90095397s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.900910265s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.893592006s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.893507705s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","height":25,"time":"2023-09-06T10:26:06+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.891162446s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.891116413s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.891024848s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.891019599s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} +{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.889053053s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.889041289s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.888947313s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.887795843s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.887742148s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.887694297s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.883372385s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.883335664s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.883305526s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.880576023s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.880527908s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.880474032s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.87846312s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.878425979s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.87837619s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.877074248s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.877026535s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.876979376s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.875706405s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.875671359s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.875623827s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.87498776s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.874935473s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.874889836s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.874015646s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.873964615s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.873919163s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.872361407s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.872315408s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.872260464s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.870250554s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.870199184s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.870154111s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.86929115s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.869240847s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.869195504s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.865525875s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.865475577s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.865431591s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.860378285s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.860343099s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.860314133s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.857705187s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.857670083s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.857620981s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:06+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:06+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:06+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:06+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:06+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:06+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:06+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:07+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:07+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:07+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:07+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:07+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:07+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:07+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:07+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.901009439s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","ticker":"1.889053053s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.889041289s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.883305526s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.891024848s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","ticker":"1.891019599s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","ticker":"1.872361407s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","ticker":"1.887795843s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.909015742s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","ticker":"1.908969579s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","ticker":"1.865431591s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.877074248s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","ticker":"1.888947313s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.877074248s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.908843345s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.908948159s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.908843345s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.870199184s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.908948159s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.870199184s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.880474032s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.883372385s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.865475577s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.880474032s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.883372385s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.865475577s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.880576023s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.900910265s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.880576023s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.900910265s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.874935473s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.874935473s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.876979376s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.876979376s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.887742148s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.887742148s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.860343099s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.860343099s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.873964615s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.857705187s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.857705187s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.873964615s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.860378285s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.857670083s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.860378285s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.857670083s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.874015646s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.869240847s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.874015646s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.860314133s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.869240847s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.86929115s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.860314133s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.86929115s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.857620981s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.857620981s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.869195504s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.869195504s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.873919163s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.873919163s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.893507705s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.893507705s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.878425979s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.878425979s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.891162446s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.872315408s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.891162446s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.872315408s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.90095397s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.87837619s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.875671359s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.891116413s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.90095397s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.87837619s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.875671359s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.891116413s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.877026535s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.875706405s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.877026535s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.875706405s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.883335664s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.893592006s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.872260464s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.893592006s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.883335664s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.872260464s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.87846312s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.880527908s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.87846312s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.875623827s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.880527908s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.875623827s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:08+03:30","message":"found invalid transaction"} +{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.874889836s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.874889836s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.870154111s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.870154111s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 26/0/propose/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.887694297s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.887694297s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.908903743s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.908903743s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.870250554s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.870250554s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.865525875s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.865525875s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.87498776s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.87498776s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.909029454s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.909029454s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1psgn080ye 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.919670045s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.919645157s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.919529281s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} +{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1psgn080ye 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.911830186s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.911818741s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.911723441s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.910212582s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.910154726s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.910100666s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.907730795s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.907630092s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.905763579s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.905756311s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.90565384s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","height":26,"time":"2023-09-06T10:26:08+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.904902864s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.904894753s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.904804559s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.904663758s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_consensus":"{pc1psgn080ye 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.900290137s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.900240533s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.900190235s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.899711471s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.899658851s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.899610032s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.898991005s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.89894473s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.898891636s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.896311462s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.896255293s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.89620771s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.894668933s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.894617552s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.894572124s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.894384334s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.894329547s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.894278918s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.893879696s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.89382949s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.893785046s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.893644127s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.893589991s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.893533288s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.892924243s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.892872193s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.892824409s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.887490609s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.887434911s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.887389449s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.886710809s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.886661159s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.886608883s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.885929925s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.885879137s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.885836005s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.88535947s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.885324433s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.885296204s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.88491121s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.884880098s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.884853193s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:09+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:09+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:09+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0}","time":"2023-09-06T10:26:09+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","ours":0,"peer":0,"time":"2023-09-06T10:26:09+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0}","time":"2023-09-06T10:26:09+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","ours":0,"peer":0,"time":"2023-09-06T10:26:09+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0}","time":"2023-09-06T10:26:09+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","ours":0,"peer":0,"time":"2023-09-06T10:26:09+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","ticker":"1.904894753s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.907630092s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","ticker":"1.892824409s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.919645157s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","ticker":"1.911830186s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.910100666s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","ticker":"1.910154726s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","ticker":"1.885296204s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.904804559s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.910212582s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.904804559s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.910212582s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.886661159s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.892872193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.898991005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.892872193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.898991005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","ticker":"1.905763579s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.893589991s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.899711471s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.898891636s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.899711471s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.898891636s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.899610032s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.900290137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.899610032s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.89382949s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.900290137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","ticker":"1.89620771s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.893589991s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.900190235s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.900190235s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.894329547s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.894329547s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.919529281s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.919529281s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.893644127s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.893644127s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.907730795s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.907730795s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904663758s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.894384334s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904663758s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.894384334s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.893533288s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.892924243s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.893533288s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.892924243s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.894617552s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.894278918s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.894617552s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.90565384s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.894278918s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.90565384s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.905756311s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904902864s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.905756311s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904902864s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.885324433s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.884853193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88535947s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.885324433s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.884853193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88535947s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.884880098s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.893785046s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.894668933s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.884880098s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.893785046s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.894668933s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.894572124s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.893879696s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.894572124s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.893879696s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88491121s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88491121s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.885879137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.885879137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.887434911s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.887434911s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.896255293s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.896255293s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.911818741s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.911818741s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.89894473s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.89894473s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.900240533s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.900240533s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.899658851s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.899658851s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.919670045s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.919670045s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:10+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:10+03:30","message":"found invalid transaction"} +{"level":"info","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.886608883s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.886608883s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.911723441s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 27/0/propose/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.911723441s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.885929925s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.885929925s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.886710809s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.886710809s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.896311462s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.896311462s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.887490609s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.887490609s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.885836005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.885836005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.887389449s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.887389449s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.922513945s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.92243684s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.922337703s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1psgn080ye 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.913980949s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.913943486s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.913848162s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.912485328s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.912437014s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.912395662s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.897584199s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.897543953s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.89750599s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.890158105s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.89004168s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} +{"level":"debug","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","height":27,"time":"2023-09-06T10:26:10+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.886691154s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.886678086s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.886582145s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.886542767s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.883719106s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.883681511s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.883631521s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.883175019s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.883142084s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.883114176s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.883087998s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.883039195s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.88299991s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.882505013s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.882466447s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.882436228s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p54qca6v4 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.879640709s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.879598478s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.879498654s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.878082517s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.878085481s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.878015151s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.878015674s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.87796233s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.877935719s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.869451664s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.869415885s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.86938717s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.868998983s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.868959347s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.868930303s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.868587615s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.86854734s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.868539247s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.868517528s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.868508856s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.868482623s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.868123882s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.868090627s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.868061092s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.86318054s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.863145926s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.863116769s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.862727462s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.862696675s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.862667826s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:10+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:10+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:10+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:10+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:10+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:10+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:11+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:11+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:11+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:11+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:11+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:11+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:11+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:11+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.879598478s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","ticker":"1.879640709s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","ticker":"1.868539247s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.868959347s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.878015151s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","ticker":"1.879498654s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","ticker":"1.89750599s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","ticker":"1.913980949s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.862696675s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","ticker":"1.886542767s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.92243684s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.897543953s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.882436228s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.897543953s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.862696675s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883681511s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.863145926s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.878085481s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.878085481s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.863145926s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883681511s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.922337703s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","ticker":"1.882466447s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.882505013s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.868090627s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.922337703s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.882505013s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.868090627s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.877935719s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.912485328s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.86854734s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.877935719s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.912485328s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.86854734s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.883087998s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.912395662s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.913943486s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.883087998s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.912395662s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.913943486s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.88299991s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883142084s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883142084s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.88299991s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868123882s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868123882s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.86318054s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.86318054s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868587615s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868587615s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.862667826s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.862667826s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.862727462s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.862727462s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.863116769s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.863116769s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868517528s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868517528s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868061092s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868061092s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.89004168s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.89004168s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.922513945s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.886582145s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.922513945s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.886582145s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.912437014s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.868508856s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.912437014s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.868508856s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.878015674s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.869415885s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.886678086s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.878015674s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.869415885s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.897584199s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.886678086s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.897584199s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.883039195s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.86938717s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.883039195s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883175019s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.869451664s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.86938717s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883175019s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.869451664s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868930303s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868930303s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.868998983s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883719106s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.868998983s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.890158105s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868482623s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883719106s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.890158105s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868482623s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.878082517s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.886691154s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.878082517s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.886691154s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: in each height only 1/3 of stake can join","time":"2023-09-06T10:26:12+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: in each height only 1/3 of stake can join","time":"2023-09-06T10:26:12+03:30","message":"found invalid transaction"} +{"level":"info","_consensus":"{pc1p8ngea89f 28/0/propose/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883114176s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883114176s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.913848162s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.913848162s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883631521s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883631521s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.87796233s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.87796233s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"parsing Proposal message"} +{"level":"info","_consensus":"{pc1psgn080ye 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.885585737s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.885577143s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.885460786s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"sortition transaction broadcasted"} +{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.870822902s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.870813208s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.870709894s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.864679769s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.864641714s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.864594155s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1psgn080ye 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.858522052s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.858386379s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p54qca6v4 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.858097935s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.858053148s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.857929657s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","height":28,"time":"2023-09-06T10:26:12+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.855574284s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.855562177s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.855466876s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.855421647s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1psgn080ye 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.849201215s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.849162221s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.849112455s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.846575752s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.846526855s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.846461961s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.846471014s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.846427754s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.846393166s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.845338143s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.845287142s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.845250532s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.841286568s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.841251293s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.841221596s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.841103178s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.841046803s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.840996225s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.840281163s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.840226204s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.840181905s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.839054227s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.839016551s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.838986057s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"CF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"CF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.835633427s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.835597819s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.835567161s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.8305345s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.830486502s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.830442075s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.830420152s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.830374644s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.830333814s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.829530801s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.829493016s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.829445342s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"CF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.824519623s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.824483889s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.824454245s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.820910878s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.820868587s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.82081751s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0}","time":"2023-09-06T10:26:12+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","ours":0,"peer":0,"time":"2023-09-06T10:26:12+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0}","time":"2023-09-06T10:26:12+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","ours":0,"peer":0,"time":"2023-09-06T10:26:12+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0}","time":"2023-09-06T10:26:12+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","ours":0,"peer":0,"time":"2023-09-06T10:26:12+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","ticker":"1.841221596s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","ticker":"1.838986057s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","ticker":"1.858522052s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","ticker":"1.870822902s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.858053148s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","ticker":"1.840181905s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.870813208s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.830442075s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","ticker":"1.830486502s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pafen0x39 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1psgn080ye 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.885577143s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","ticker":"1.858097935s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.830374644s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.858386379s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.855562177s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} +{"level":"warn","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.855562177s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.830374644s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.846471014s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.835567161s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.841286568s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.845287142s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.846471014s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.835567161s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.845287142s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.840996225s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.846393166s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.840226204s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.841286568s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.846393166s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"warn","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.840226204s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.820868587s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.855466876s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.855466876s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.820868587s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855421647s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.846427754s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.839016551s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855421647s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.846427754s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.839016551s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855574284s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.846526855s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.840996225s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.824483889s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.841103178s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855574284s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.846526855s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.824483889s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.841103178s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.835633427s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.841251293s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.841046803s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.8305345s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.835633427s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.841251293s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.841046803s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.885460786s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.846461961s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.835597819s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.885460786s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.829493016s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.864641714s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.8305345s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.846461961s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.835597819s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.820910878s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.864641714s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.864594155s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.820910878s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.846575752s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.864594155s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.829493016s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.885585737s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.846575752s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.830420152s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.885585737s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.830420152s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.82081751s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.849162221s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.864679769s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.82081751s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.864679769s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.840281163s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.849162221s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.840281163s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.830333814s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.845338143s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.830333814s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.845338143s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.845250532s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.845250532s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.857929657s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.857929657s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:14+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.824519623s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/propose/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.824519623s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.829530801s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.829530801s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.839054227s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.839054227s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.849201215s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.849201215s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.824454245s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.824454245s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.849112455s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.849112455s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.870709894s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.870709894s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.829445342s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.829445342s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"parsing Proposal message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.880913052s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.880847076s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.880744633s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.878408921s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.878391476s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.878296467s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.86890486s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.868855046s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.868812419s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"CDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1pg3yhezax 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.859102632s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.859065466s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","height":29,"time":"2023-09-06T10:26:14+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.85668543s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.856673582s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.856583518s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.856537029s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.849923683s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.849871544s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.849829467s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.849615044s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.849563679s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.849519818s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"CDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.841993249s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.841935192s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.841884311s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:14+03:30","message":"check connectivity"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.837339336s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.837293254s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.837261592s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.83029219s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.830245128s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.830205523s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.830044726s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.829990355s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.829944082s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:14+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:14+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.817449738s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.817393843s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.817348558s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} +{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:14+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:14+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_consensus":"{pc1p54qca6v4 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.810225332s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.810044767s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","height":29,"time":"2023-09-06T10:26:14+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.808019037s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.808004493s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.807902924s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.807904374s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.801638642s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.801596552s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.801547828s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"CDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.796952145s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.796952935s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.796894152s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.796894339s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.796840927s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.796842641s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.79274562s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.792690034s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.792642863s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.790051672s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.790004411s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.789964369s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.78939243s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.789355096s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.789305551s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.787962578s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.78792679s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.78789877s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.780688151s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.780638987s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.780580485s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.7727266s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.772673997s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.772627325s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.764787616s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.76474744s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.764698647s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:14+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:14+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:15+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:15+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:15+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:15+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:15+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:15+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:15+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:15+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:15+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.880847076s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","ticker":"1.880913052s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","ticker":"1.808004493s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","ticker":"1.801547828s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","ticker":"1.772627325s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","ticker":"1.849615044s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","ticker":"1.837293254s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.856673582s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.849923683s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.780638987s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.78792679s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} +{"level":"info","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"info","_consensus":"{pc1pafen0x39 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.789305551s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.772673997s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1psgn080ye 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.772673997s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.849923683s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.859065466s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.76474744s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.859065466s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.796840927s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.796952145s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","ticker":"1.78789877s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.764698647s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.796840927s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.796952145s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.764698647s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.868812419s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.78939243s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.808019037s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.868812419s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.796952935s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.78939243s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"warn","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.837261592s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.796952935s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.880744633s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.837261592s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.86890486s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.880744633s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.796894152s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.787962578s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.86890486s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.796894152s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.7727266s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.76474744s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.841884311s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.856537029s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.787962578s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.7727266s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.808019037s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.856537029s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.817393843s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.790004411s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.817449738s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.817393843s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.807904374s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.790004411s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.764787616s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.817449738s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.841993249s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.807904374s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.764787616s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.807902924s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.841993249s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.837339336s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.789964369s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.807902924s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.810225332s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.830044726s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.837339336s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.849563679s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.810225332s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.830044726s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.849563679s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.841884311s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.83029219s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.790051672s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.829990355s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.878408921s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.85668543s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.796842641s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.790051672s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.829990355s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.85668543s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.796842641s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.810044767s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.780688151s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.878391476s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.878408921s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.830205523s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.878391476s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.878296467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.849829467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.830205523s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.849829467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.83029219s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.780688151s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.789964369s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.878296467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.810044767s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.792642863s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.79274562s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.829944082s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.792642863s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.79274562s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.780580485s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.829944082s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.856583518s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.780580485s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.849519818s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.856583518s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.849519818s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.859102632s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.801638642s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.817348558s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.801638642s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.817348558s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.859102632s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.830245128s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.830245128s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.792690034s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.792690034s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.801596552s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.801596552s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:16+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/propose/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.796894339s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.796894339s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.789355096s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.789355096s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.868855046s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.868855046s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.841935192s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.841935192s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.849871544s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.849871544s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.906608818s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.906561343s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.90647925s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.89607117s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.896058217s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p54qca6v4 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.894817144s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.894809874s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.894711588s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} +{"level":"debug","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","height":30,"time":"2023-09-06T10:26:16+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.893042502s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.893033371s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.892939764s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.892894415s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.891554928s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.891501964s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.891453321s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1pg3yhezax 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.888984992s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.888970711s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.888537353s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.888502811s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.888472706s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","height":30,"time":"2023-09-06T10:26:16+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.886259573s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.886246477s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.886145176s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.886132021s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.885165298s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.885107904s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.885054789s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.881678679s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.881631766s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.8815841s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.878807869s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.878762119s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.878713813s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.874428496s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.874375513s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.874327475s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.873893595s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.873848915s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.873805439s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.872804396s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.872746933s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.872701958s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.871058818s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.870999405s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.870936092s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.869689389s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.869635237s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.869588094s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.868083008s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.868032932s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.867986663s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.867448466s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.867390035s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.867340133s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.864941015s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.864888117s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.864832853s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.86398786s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.863931739s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.86388214s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.863361744s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.863311911s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.863265512s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.860194096s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.860143349s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.860094021s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.858969674s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.858918574s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.858876802s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.855524162s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.855477047s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.855435381s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:16+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:16+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:16+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:16+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:16+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:16+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:16+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:17+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:17+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:17+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:17+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:17+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:17+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:17+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:17+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","ticker":"1.888502811s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","ticker":"1.873805439s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","ticker":"1.886145176s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","ticker":"1.860143349s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.906561343s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.858918574s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.871058818s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.8815841s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","ticker":"1.892894415s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.896058217s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","ticker":"1.894817144s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","ticker":"1.855435381s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.868032932s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.868032932s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.855477047s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.855477047s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.863311911s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.863311911s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.872746933s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.872746933s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.894809874s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.894809874s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.888970711s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.888970711s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.886246477s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886132021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.886246477s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886132021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.870999405s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.873893595s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.870999405s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.873848915s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.870936092s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.873848915s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.870936092s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.873893595s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.867390035s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.86388214s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.867390035s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.86388214s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.867448466s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.888984992s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886259573s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.867448466s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.888984992s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886259573s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.86398786s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.863931739s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.86398786s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.863931739s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.867340133s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.867340133s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.872804396s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.872804396s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.855524162s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.855524162s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.878807869s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.878713813s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.878807869s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.878713813s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.868083008s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.868083008s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.881678679s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.881678679s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.858969674s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.885054789s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.885165298s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.858969674s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.893033371s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.885165298s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.893033371s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.863361744s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.885054789s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.888537353s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.874428496s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.888537353s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.90647925s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.863361744s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.874428496s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.891554928s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.90647925s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.891554928s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.864941015s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.891453321s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.906608818s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.874327475s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.864941015s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.892939764s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.891453321s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.874327475s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.860194096s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.888472706s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.860194096s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.892939764s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.888472706s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.864832853s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.869689389s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.864832853s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.906608818s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.869689389s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.864888117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.869588094s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.864888117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.878762119s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.869588094s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.878762119s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.874375513s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.874375513s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.860094021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.881631766s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.860094021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.881631766s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.869635237s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.869635237s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.893042502s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.885107904s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.893042502s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.89607117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.885107904s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.89607117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.891501964s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.891501964s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:18+03:30","message":"found invalid transaction"} +{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/propose/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"parsing Proposal message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.863265512s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.863265512s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.858876802s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.858876802s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.867986663s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.867986663s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.872701958s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.872701958s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.894711588s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.894711588s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.927610396s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.927556793s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.92744701s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} +{"level":"info","_consensus":"{pc1p54qca6v4 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.916818029s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.916770419s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.916687226s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.916224028s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.916215044s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.915335959s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.915271812s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.915214287s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.914579426s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.914533502s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.914485135s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","height":31,"time":"2023-09-06T10:26:18+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.913529336s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.91352101s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.913429915s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.913383845s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.911904895s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.911850531s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.911805273s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1pg3yhezax 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.906671257s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.906657252s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.904706324s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.904637961s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.904577275s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","height":31,"time":"2023-09-06T10:26:18+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.904249749s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.904241841s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.904141201s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.904114473s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"parsing Transactions message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.90260064s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.902539083s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.902489772s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.898201384s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.89814575s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.898098139s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.897733717s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.897682863s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.897635041s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.897394999s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.897344732s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.897298084s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.897059595s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.897010189s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.89696926s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.896652333s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.896600976s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.89655374s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.896278845s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.896232592s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.896184508s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.895897781s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.895843216s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.895800245s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.895564688s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.895519906s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.895479241s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.895152373s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.895099963s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.895055813s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.889234948s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.889175962s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.889126834s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.888689906s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.888644542s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.888601844s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.888156293s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.88811206s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.888066358s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.887438587s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.88739084s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.887339274s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:19+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0}","time":"2023-09-06T10:26:19+03:30","message":"parsing HeartBeat message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","ours":0,"peer":0,"time":"2023-09-06T10:26:19+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0}","time":"2023-09-06T10:26:19+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","ours":0,"peer":0,"time":"2023-09-06T10:26:19+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0}","time":"2023-09-06T10:26:19+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","ours":0,"peer":0,"time":"2023-09-06T10:26:19+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.889234948s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.927556793s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.904577275s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.916215044s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","ticker":"1.927610396s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","ticker":"1.913529336s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","ticker":"1.904141201s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.902489772s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.902489772s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.911904895s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","ticker":"1.887339274s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.911904895s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.915214287s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","ticker":"1.913429915s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.887438587s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.904706324s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.887438587s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.904706324s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","ticker":"1.916818029s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888156293s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.914579426s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888156293s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","ticker":"1.895055813s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.915214287s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.91352101s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888689906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.914485135s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.91352101s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.914485135s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.914579426s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.895843216s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.911805273s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.896278845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.90260064s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.911805273s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.896278845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.90260064s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.92744701s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.92744701s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888689906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.915335959s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897059595s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.906657252s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.915335959s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897059595s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.906657252s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.895564688s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.904241841s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.895564688s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.904241841s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897733717s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897733717s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.913383845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.913383845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.895479241s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.895519906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.895479241s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.895519906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88811206s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.896184508s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.889126834s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88811206s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.896184508s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.889126834s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.889175962s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.897635041s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.896232592s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.897635041s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.889175962s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.896232592s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888066358s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.89696926s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888066358s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897010189s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.888644542s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.89696926s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897010189s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888601844s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.888644542s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888601844s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897682863s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88739084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897682863s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904249749s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88739084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904249749s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.906671257s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904114473s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.906671257s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904114473s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.916224028s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.916224028s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.914533502s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.914533502s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.902539083s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.902539083s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.896600976s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.911850531s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.896600976s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.911850531s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.895099963s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.895099963s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p54qca6v4 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.904637961s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.897344732s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.904637961s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.897344732s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.915271812s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.916770419s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.915271812s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.916770419s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.916687226s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.89814575s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.89814575s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.916687226s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.895800245s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.895800245s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.89655374s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.89655374s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.898098139s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.898098139s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.897298084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.897298084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:20+03:30","message":"found invalid transaction"} +{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:20+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 32/0/propose/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.896652333s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.896652333s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.897394999s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.897394999s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895897781s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895897781s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.898201384s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.898201384s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895152373s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895152373s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.922261092s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.922250721s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.922144541s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1pg3yhezax 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.905881799s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.905838638s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.904393736s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.904342228s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.90429319s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","height":32,"time":"2023-09-06T10:26:20+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.903263668s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.903248421s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.903173073s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.903157951s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.901820301s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.9017717s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.901724649s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.894516575s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.894480775s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.894451648s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p54qca6v4 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.885310135s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.88519721s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","height":32,"time":"2023-09-06T10:26:20+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.881773432s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.881763001s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.881663026s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.8816392s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.881624792s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.881619924s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"parsing Transactions message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.878538056s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.878488819s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.878445776s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","height":32,"time":"2023-09-06T10:26:20+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.878121267s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.878112953s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.878013108s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.877976882s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.877840345s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.877782125s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.877735039s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.87772903s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.877681942s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.877635591s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.87703013s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.876980635s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.876932869s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.87691174s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.876852575s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.876803597s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.876305389s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.876261059s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.8762134s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.876180932s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.876129198s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.876071015s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.875458001s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.87540552s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.875355599s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.866874173s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.866788852s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.866719655s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.865888089s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.865818372s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.8657601s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.864704354s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.86462671s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.86457772s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.863861954s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.863811668s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.863766991s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.863081119s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.86303103s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.862984586s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.862800489s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.862767841s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.862740249s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.862352788s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.862322464s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.862295249s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.861912127s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.86188185s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.861853759s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"parsing Transactions message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.856902419s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.856867944s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.856839381s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.856449865s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.856419228s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.85639196s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:20+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:20+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:20+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:20+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:20+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:20+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:21+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:21+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:21+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:21+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:21+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:21+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:21+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:21+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.905838638s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","ticker":"1.877635591s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.922250721s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","ticker":"1.866719655s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.88519721s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","ticker":"1.885310135s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.901724649s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","ticker":"1.862740249s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","ticker":"1.894480775s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.901820301s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.901820301s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","ticker":"1.876261059s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.878112953s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.878445776s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.876305389s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.878445776s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.876305389s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.876932869s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","ticker":"1.8816392s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.876932869s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.878538056s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.878538056s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.904393736s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.8762134s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.904393736s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.8762134s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.90429319s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.90429319s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.87703013s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.922144541s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.922144541s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.87703013s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.87772903s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.87772903s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.877840345s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.877840345s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856449865s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856449865s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.856839381s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862352788s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.878013108s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.856839381s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.878013108s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862352788s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.861853759s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856867944s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.861853759s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856867944s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.861912127s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.862295249s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856419228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.861912127s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.862295249s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856419228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.85639196s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862800489s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862322464s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.85639196s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862322464s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862800489s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.877976882s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862767841s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862767841s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.876180932s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.881663026s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.86188185s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.881663026s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.876180932s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.862984586s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.863811668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.862984586s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.903248421s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.863811668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.865888089s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.903248421s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.863766991s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.881619924s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.865888089s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.863766991s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.881619924s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.875458001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.877976882s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.881763001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.875458001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.86457772s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.881763001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.9017717s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856902419s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.878121267s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.86457772s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.877735039s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.9017717s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.878121267s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.86188185s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.866874173s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.877735039s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881773432s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.904342228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.866874173s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881773432s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.904342228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.894516575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.894516575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.8657601s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863081119s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.922261092s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856902419s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.866788852s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.8657601s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.922261092s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.87691174s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863081119s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.866788852s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.87691174s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881624792s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.878488819s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.865818372s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863861954s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.878488819s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881624792s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.865818372s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863861954s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.877782125s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.877782125s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.864704354s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.876980635s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.864704354s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86303103s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.876980635s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86303103s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86462671s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86462671s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:22+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","err":"invalid transaction: in each height only 1/3 of stake can join","time":"2023-09-06T10:26:22+03:30","message":"found invalid transaction"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.894451648s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.894451648s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876071015s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876071015s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.875355599s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.875355599s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876803597s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876803597s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903173073s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903173073s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903263668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903263668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 33/0/propose/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.903157951s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.903157951s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.877681942s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.877681942s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.87540552s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.87540552s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876852575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876852575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.905881799s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.905881799s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876129198s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876129198s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.905561998s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.905547938s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.905447821s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} +{"level":"info","_consensus":"{pc1pg3yhezax 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.891964638s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.89191877s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} +{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","height":33,"time":"2023-09-06T10:26:22+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.889687938s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.88967675s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.889589273s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.889404068s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.886501575s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.88644777s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.886401091s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p54qca6v4 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.884103968s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.884096002s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.883997563s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.883393707s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.88314807s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.881724464s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.881672114s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.881626366s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","height":33,"time":"2023-09-06T10:26:22+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.879912968s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.879902574s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.879793992s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.879775373s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.876982017s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.876927556s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.876886018s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.876882626s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.876841203s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.876797669s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.873962354s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.873914769s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.873875171s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.8722692s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.872216826s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.872171131s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.870792366s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.870736497s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.870687093s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.868436785s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.868383565s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.8683305s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.867587692s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.867550779s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.867518896s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.867491862s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.867461578s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.867446703s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.864929306s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.864881099s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.864833514s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.863993502s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.863952794s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.863922886s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.862054281s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.862006045s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.861966063s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.861350203s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.86131554s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.861284938s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.859153207s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.859105165s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.859066368s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.858662797s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.858621527s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.858591281s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.856196981s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.856152122s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.856110246s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.856006303s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.855972283s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.855941917s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0}","time":"2023-09-06T10:26:22+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","ours":0,"peer":0,"time":"2023-09-06T10:26:22+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0}","time":"2023-09-06T10:26:22+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","ours":0,"peer":0,"time":"2023-09-06T10:26:22+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0}","time":"2023-09-06T10:26:22+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","ours":0,"peer":0,"time":"2023-09-06T10:26:22+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","ticker":"1.879793992s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.905547938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","ticker":"1.889687938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","ticker":"1.905561998s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.856152122s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","ticker":"1.859066368s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"info","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","ticker":"1.889589273s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","ticker":"1.858591281s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.867446703s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","ticker":"1.859153207s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.88967675s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.88314807s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.859105165s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.8722692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.859105165s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.8722692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"warn","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} +{"level":"warn","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.884096002s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.881724464s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.884096002s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.881724464s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"warn","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} +{"level":"info","_consensus":"{pc1psgn080ye 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.864881099s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.867550779s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.864881099s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} +{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.867550779s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.863993502s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"warn","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.863993502s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.883393707s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} +{"level":"info","_consensus":"{pc1p8ngea89f 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.861350203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.883393707s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.861350203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} +{"level":"info","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.856006303s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.86131554s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.886501575s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.876841203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.856006303s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.886501575s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.876841203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.86131554s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.876886018s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.876886018s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.876982017s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.870736497s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.863952794s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.876982017s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.870736497s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.863952794s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.864929306s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.864929306s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.862054281s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.858662797s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.867518896s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.867587692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.862054281s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.855972283s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.883997563s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.867518896s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.872171131s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.867587692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.855972283s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.883997563s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.872171131s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.881672114s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.858662797s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.873914769s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.870792366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.881672114s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.858621527s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.886401091s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.868383565s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.879902574s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.858621527s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.886401091s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.856110246s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.867491862s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.879902574s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.868436785s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.856110246s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.867491862s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.876882626s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.868436785s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.870792366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.873914769s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.864833514s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.876882626s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.884103968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.864833514s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.891964638s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.881626366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.884103968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.891964638s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.861966063s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.881626366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.861966063s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.856196981s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879775373s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.905447821s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.856196981s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.873962354s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.8683305s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.872216826s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879775373s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.873962354s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.8683305s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.872216826s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.868383565s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.861284938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.905447821s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.89191877s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.861284938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.862006045s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.88644777s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.89191877s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.862006045s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.863922886s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.88644777s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.863922886s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.876927556s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.876927556s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.855941917s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.855941917s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879912968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879912968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"debug","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:24+03:30","message":"found invalid transaction"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 34/0/propose/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.876797669s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.876797669s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.870687093s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.870687093s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.873875171s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.873875171s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.867461578s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.867461578s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.889404068s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.889404068s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} +{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.911597205s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.911586227s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.911477173s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1pg3yhezax 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.907384258s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.907377734s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","height":34,"time":"2023-09-06T10:26:24+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.904615s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.904607809s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.904509224s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.90446986s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.900294752s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.9002342s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.900186255s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.895528365s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.895471495s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.89542488s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.892779008s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.892737779s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.892679755s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} +{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.891087588s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.891075131s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","height":34,"time":"2023-09-06T10:26:24+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.888932223s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.888922876s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.88882057s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.888784881s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.886778324s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.886729821s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.886688142s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.886141155s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.886130931s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.885549533s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.885491109s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.885445791s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.883141822s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.8830941s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.883050787s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","height":34,"time":"2023-09-06T10:26:24+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p24snhmkw 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.882643582s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.88263321s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.88253308s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.882518147s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.880817378s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.880763014s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.880714825s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.879406427s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.879346474s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.879297023s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.876762074s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.87671264s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.876673264s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.876214764s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.876158025s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.876106322s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.876058609s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.876007072s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.875950106s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.873892786s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.873844954s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.87380312s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.871342834s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.8712916s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.871247148s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.871102954s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.871052775s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.870992914s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.8683257s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.868278529s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.868239416s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.867120989s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.867083605s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.867054024s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.865572935s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.865525756s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.865484777s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.864492743s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.864454601s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.864423324s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.861854532s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.861820279s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.861791647s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.859210033s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.85917515s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.859146676s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.85656507s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.856531307s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.856502178s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:24+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:24+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:24+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:24+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:24+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:24+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:24+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:25+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:25+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:25+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:25+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:25+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:25+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:25+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:25+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:25+03:30","message":"check connectivity"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","ticker":"1.876673264s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.888922876s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.883141822s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.88263321s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.880817378s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","ticker":"1.859146676s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","ticker":"1.871247148s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} +{"level":"info","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"info","_consensus":"{pc1psgn080ye 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","ticker":"1.865525756s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.886130931s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","ticker":"1.8830941s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","ticker":"1.88253308s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} +{"level":"info","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.886130931s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.868239416s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} +{"level":"info","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","ticker":"1.90446986s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.911586227s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.868239416s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.864492743s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.907377734s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.864492743s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.911586227s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.87380312s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"info","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.87380312s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.9002342s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"warn","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.861854532s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.876762074s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.861854532s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.876762074s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.891075131s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.867120989s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} +{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.891075131s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.867120989s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"warn","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1pafen0x39 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.871342834s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.865572935s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.871342834s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.865484777s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.865484777s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.895528365s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882518147s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.895528365s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.861820279s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.85656507s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888932223s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882518147s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.861820279s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.85656507s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.885549533s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.865572935s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888932223s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.879346474s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.911477173s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.861791647s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.885549533s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.8683257s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.870992914s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.911477173s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.861791647s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.8683257s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.876058609s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.870992914s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.900186255s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"warn","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.873892786s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.895471495s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.856502178s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.876058609s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.900186255s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888784881s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.873892786s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.895471495s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.856502178s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.900294752s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.871102954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.911597205s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.885491109s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.900294752s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.871102954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.867054024s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.859210033s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.911597205s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.885491109s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.859210033s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.867054024s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.864454601s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.907377734s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.879346474s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888784881s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.864454601s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.880714825s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.8712916s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.864423324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.880714825s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.886778324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.8712916s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.856531307s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.864423324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.89542488s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.856531307s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.876007072s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.89542488s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.876007072s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.883050787s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.876158025s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.85917515s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.883050787s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.886778324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.85917515s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882643582s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.875950106s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.876106322s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.876214764s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882643582s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.875950106s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.867083605s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.880763014s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.876106322s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.876214764s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.880763014s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.876158025s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.885445791s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.879297023s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.885445791s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.867083605s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.886729821s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.892779008s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.879297023s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.886729821s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.886141155s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.886688142s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.892737779s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.886141155s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.886688142s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.892779008s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.892737779s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.892679755s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.879406427s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.904509224s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.879406427s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.892679755s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.904509224s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.904607809s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.904615s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.907384258s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.904607809s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.907384258s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.904615s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/propose/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"parsing Proposal message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.88882057s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.88882057s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.871052775s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.871052775s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.868278529s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.868278529s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.891087588s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.891087588s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.873844954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.873844954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.87671264s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.87671264s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1pafen0x39 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"info","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.932980956s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.932965186s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.932864958s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} +{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"sortition transaction broadcasted"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1pg3yhezax 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.91942682s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.919417962s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.917873573s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.917824257s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.917776014s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","height":35,"time":"2023-09-06T10:26:26+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.917180936s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.917170351s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.917076611s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.917059978s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1pafen0x39 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.916586892s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.916523111s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.915516418s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.915460044s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.915403333s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.914128085s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.914114955s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","height":35,"time":"2023-09-06T10:26:26+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.912974796s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.912961598s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.912867084s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.912835339s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"parsing Transactions message"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","height":35,"time":"2023-09-06T10:26:26+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p24snhmkw 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.91135565s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.91134455s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.911255938s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.911205346s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.90801812s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.907954478s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.907905013s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.907368026s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.907332885s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.907283755s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.906829358s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.906795433s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.906747329s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.906125863s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.906077486s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.906026434s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.902482046s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.902425236s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.902378914s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pafen0x39 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.900467417s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.900408776s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.900358858s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.899665435s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.899593144s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.899545117s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.898848559s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.898794966s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.898747986s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"parsing Transactions message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.898247434s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.898188228s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.898142376s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.89745729s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.897406872s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.897362422s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.896677591s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.896628593s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.896584299s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.895908699s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.895860282s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"parsing Transactions message"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.895815415s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.895137426s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.895089387s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.895045951s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.894058664s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.894024377s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.893995467s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.893593065s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.893562138s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.89353269s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.893146669s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.893115713s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.893087824s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.892703851s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.892674178s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.892645447s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.892199371s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.892143826s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.892094002s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.891464837s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.891410197s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.891359586s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:26+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:26+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:26+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:26+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:26+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:26+03:30","message":"our consensus is at the same round with this peer"} +{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:26+03:30","message":"check connectivity"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:27+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:27+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:27+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:27+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:27+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:27+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:27+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:27+03:30","message":"our consensus is at the same round with this peer"} +{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","ticker":"1.911205346s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.932965186s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.912961598s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","ticker":"1.916586892s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","ticker":"1.917180936s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","ticker":"1.906795433s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","ticker":"1.895045951s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.932864958s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","ticker":"1.898794966s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895137426s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906829358s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895137426s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","ticker":"1.917076611s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906829358s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.917170351s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895908699s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.907368026s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895908699s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.907368026s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.916523111s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.915516418s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.916523111s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.915516418s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.892199371s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.89745729s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.89745729s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906125863s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906125863s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.896677591s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.896677591s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.90801812s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.90801812s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.898247434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.917873573s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.898247434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.917873573s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1pafen0x39 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.896628593s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.896628593s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895089387s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895089387s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895860282s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895860282s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.896584299s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.897406872s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.896584299s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.897406872s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.898747986s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"our turn to propose"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.897362422s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.898747986s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.91134455s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.897362422s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.91134455s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.900358858s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.898188228s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.895815415s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.900358858s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.900467417s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.898188228s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.895815415s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.900467417s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.899545117s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.912867084s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.898142376s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.899545117s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.898848559s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.912867084s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.898848559s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.898142376s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.899665435s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912835339s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.899665435s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912835339s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.891359586s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912974796s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.891359586s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.891464837s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912974796s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.891464837s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.892094002s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.892094002s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.91135565s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.914114955s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.91135565s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.914114955s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} +{"level":"info","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907283755s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907283755s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906747329s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.917059978s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906747329s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1psgn080ye 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.917059978s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907905013s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907905013s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.906077486s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893087824s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906026434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893087824s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906026434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.906077486s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.919417962s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.892674178s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893995467s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.919417962s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.917776014s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907332885s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.892674178s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893995467s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907332885s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.917776014s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.892703851s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893562138s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.89353269s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.915460044s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893562138s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.915403333s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.892703851s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.915460044s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.915403333s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893115713s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893146669s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.89353269s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893115713s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907954478s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893146669s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.892645447s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907954478s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.894024377s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.892645447s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893593065s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.894024377s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893593065s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.932980956s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.902378914s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.902425236s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.932980956s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.894058664s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.902378914s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.902425236s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.894058664s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.917824257s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.91942682s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.917824257s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.902482046s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.91942682s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.902482046s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/propose/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal signed and broadcasted"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.911255938s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.911255938s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.891410197s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.891410197s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.900408776s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.900408776s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.899593144s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.899593144s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.892143826s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.892143826s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.914128085s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.914128085s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"parsing Proposal message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1pafen0x39 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} +{"level":"info","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} +{"level":"info","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.908759469s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.908749222s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.906617049s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.90660623s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.906512858s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","height":36,"time":"2023-09-06T10:26:28+03:30","message":"unexpected block height"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_consensus":"{pc1p24snhmkw 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} +{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.905854027s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.90584948s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.905758387s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.905685144s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.894398832s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.894335383s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.894286878s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.891057431s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.890998864s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.890948741s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.889060201s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.888978477s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.888913606s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1pafen0x39 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.884105233s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.884057106s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","height":36,"time":"2023-09-06T10:26:28+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.880945586s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.88093422s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.880818733s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.880795609s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.880499482s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.880442517s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.880390247s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.878915124s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.878863318s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.878814534s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} +{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.876607868s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.876560487s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.876518675s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.875707386s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.875672183s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.875625597s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} +{"level":"info","_consensus":"{pc1pg3yhezax 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.875188558s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.875182316s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"debug","_consensus":"{pc1pafen0x39 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} +{"level":"debug","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","height":36,"time":"2023-09-06T10:26:28+03:30","message":"unexpected block height"} +{"level":"info","_consensus":"{pc1p8ngea89f 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.872491623s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.872442255s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.87236645s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.872337306s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.871434441s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.871378072s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.871318456s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.869685766s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.869626762s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.869580082s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.868208428s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.868172441s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.86811933s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} +{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.865041736s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.864993512s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.864983373s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.864936959s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.864940547s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.864852263s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.862293848s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.862259754s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.862230581s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.860277394s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.860229153s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.860179277s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.859568714s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.859533883s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.859486686s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.85696088s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.856912367s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.856871944s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.856082991s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.856035635s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.855989063s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.853454962s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.853408398s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.853368982s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.852583859s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.852536852s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.852488155s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.850175652s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.850128898s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.850090065s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.847452564s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.847395701s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.847347142s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"broadcasting new bundle"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"broadcasting new bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"parsing Vote message"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} +{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"parsing Vote message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"parsing Vote message"} +{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} +{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} +{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} +{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0}","time":"2023-09-06T10:26:29+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","ours":0,"peer":0,"time":"2023-09-06T10:26:29+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0}","time":"2023-09-06T10:26:29+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","ours":0,"peer":0,"time":"2023-09-06T10:26:29+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0}","time":"2023-09-06T10:26:29+03:30","message":"parsing HeartBeat message"} +{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","ours":0,"peer":0,"time":"2023-09-06T10:26:29+03:30","message":"our consensus is at the same round with this peer"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{2}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{2}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/35079","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/39254/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{2}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/40649","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/59227/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} +{"level":"info","_network":"{1}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} +{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/49643/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} +{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/39157","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} diff --git a/txpool/logs/pactus.log b/txpool/logs/pactus.log new file mode 100644 index 000000000..c77e67eb9 --- /dev/null +++ b/txpool/logs/pactus.log @@ -0,0 +1,1633 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:13+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27A2F13C4C1C ๐Ÿต bb284698 {Send ๐Ÿ’ธ 000000000000->pc1pmhfa5uzf 25000000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"trace","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","id":"27a2f13c4c1cd544cb58d1f30a398c61158f9114905ea3ea3c797172a0045ca7","time":"2023-09-06T10:25:13+03:30","message":"transaction is already in pool"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:13+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B65BCF649BA ๐Ÿต cb895125 {Send ๐Ÿ’ธ pc1p0d0h65wl->pc1pe2zquhj9 5095763756912}","err":"invalid fee: fee is wrong, expected: 1000000, got: 1412074042","time":"2023-09-06T10:25:13+03:30","message":"invalid transaction"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:13+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22837CBEA034 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6fvk779k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54B266167470 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfs8vmvjy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC7EAC96614B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdukqknpg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC95F8FB9412 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcrvdpfmz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 5 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD6077CEE0D7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pru5hryx5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 6 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F025947B1A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptusf7kqt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 7 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F10CFEC0C1CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvrt7qhm5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 8 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 995C12E2A9D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn0dl07sg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 9 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5086F78D0916 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfm222dcl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 10 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B9E87DCEFE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjlkk899t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 11 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A17CBC4150A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p60d3aqr7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 12 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C8DC04E732A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8yf3xmez 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 13 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91862F125B28 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phlyj9e04 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 14 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3277290E1082 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plj333sth 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 15 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2D132F857D69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phyckq4p2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 16 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58B5EEC2AA5D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phjkcxlpe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 17 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1A8C85D8810 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2x9uhsu5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 18 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B3271E1E1D7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9x45h5e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 19 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F58D96F938FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd8xxam9g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 20 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D373E9B9936 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p59exwsmn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 21 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C438173686D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvnymgqf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 22 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0141D865B77 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5nt5sjvl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 23 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A918F9FC5FDA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp0s90v4u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 24 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF23436E0F7E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phsvjkk6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 25 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A0146DF4C6B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9d5ejpmq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 26 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9393E5822167 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prfj7dscu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 27 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1592C3BCC71A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyqvxryqs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 28 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8264C675BD24 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnf7zrfjt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 29 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0AF6FEA8A4C1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf29a6xgw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 30 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 18043D6ADCAB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe3r3m6hh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 31 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E029A1BA55D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc85hyvz3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 32 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 18A3B1B16E52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p94zxur4h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 33 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AAC37EA1FAC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7qr56c50 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 34 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE93EA76F8F4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prkxxfzes 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 35 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7287750E8825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p23a9hpzu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 36 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CF2BD90059AE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0aclguwn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 37 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 37F30908A266 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppz4l4y8c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 38 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F6278A021A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdd39x7w3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 39 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEE9BDFFDB20 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv3t93ar4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 40 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DE7EFBF16D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqlmz85jy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 41 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 62B9C3D40C52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8l00xgwg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 42 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8184611B868F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4tyfuwwu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 43 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 643B3752BBD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7vl0gymw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 44 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DC33B79428B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa20aw9vz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 45 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 255000735415 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppezyyzan 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 46 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42D7C9A8CF62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6hva3emk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 47 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 571737C9CA54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnzpxsz6y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 48 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26E21DBDE16E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkknpc0yu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 49 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB4649E067EF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd7pac5nu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 50 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F935BE8AE1AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa08yvl6w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 51 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC5700BCA2FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk4gtjlj9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 52 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 511A70AFAF60 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pct5qypmr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 53 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1C9E1745F6B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfaye4sx5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 54 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E3F9D94B24A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0dy6wxrw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 55 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79283E07538F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1payk2h8j2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 56 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F427369C358F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz7sc9z5x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 57 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09AA6DE1F353 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6yguw79n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 58 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA1C0DF654E4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prz87p9ef 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 59 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70FC76A82D3F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2h3uzc9u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 60 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AA346E25A15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6xnyttjy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 61 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD3DD25E9283 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p22d8dm83 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 62 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E39D0F57FBA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9jl4kqqu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 63 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FB1C25028E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr6dz45we 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 64 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8F8FD3A5D412 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4gln3p2y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 65 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F74FB8F8E65C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp0c0cq79 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 66 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 918CB4633DF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3vsanege 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 67 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99C1E08D42A0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv3jsp92a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 68 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99D2C5D0EB71 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf03l8k6e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 69 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01C21985E161 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl4u0my8n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 70 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 042962303335 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvmmkslm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 71 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C0986F0598D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pph7dupzt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 72 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C010403D7AB1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4m65ew4d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 73 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C98088CF40C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcxkt4kda 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 74 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2553580013BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptgzkynh7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 75 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 496C126C174E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyg7gtkry 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 76 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 404B3079F26E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6kcyzzlm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 77 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5A6BB972702B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf5dud9at 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 78 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 306C176B9074 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph4xh26td 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 79 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEED891E5346 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu5l0q63h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 80 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2D996C343709 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pugy7y80l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 81 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5EDB2EBF865 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjnlau8ln 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 82 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33C978BF715A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwhmmzk89 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 83 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 285D2343AA36 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plu42g0qg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 84 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 56D52C57039E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pefstwx9q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 85 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C823E530348E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxx56rmc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 86 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 68F88E0E47AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptk3frjsj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 87 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7BA437388F8B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskj4qp8x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 88 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FD9F5E86A10F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqmkk37xt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 89 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EE3EB8D3F59 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqmuv5ap4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 90 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B572E40A67BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf8jtvzvr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 91 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79F78A1D3A13 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppjcxpzy7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 92 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9431992AC3B6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfp6f5u87 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 93 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3C366E53BF6D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxrnr3zj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 94 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFFC5DD27BF5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwpyz57w0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 95 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CEE6CD8F2633 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj6yqv6wn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 96 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA548CD017D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm3kvpvy3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 97 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DBED113F2396 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppflht6lw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 98 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 165156876141 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgpgvne2u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 99 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87886660C59D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pajyq35wa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 100 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5E2B85E383CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1perrz6c54 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 101 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 89D1FE944A6A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj7cjcg2l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 102 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0BBBFC2F2972 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prr3wvhfv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 103 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3907FFADEF5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8xevfl9n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 104 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3FC0DD2E6580 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxemzcms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 105 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC9780312B72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pff2pykh7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 106 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92DEB18CE857 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa7ejnrtd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 107 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E6D777552C4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsrfjg5p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 108 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 415D9C912400 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdda4thxp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 109 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB9B673257B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkc4qxsxt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 110 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D969DE12A30D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pla9kz5pa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 111 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1AA8D286694 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psfuqemnh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 112 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3627BB786F49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py530n6fn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 113 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFC655B3924F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm6ckfkgn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 114 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E9B0C3080B8F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pggle88vf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 115 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FDE6EFAC534C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pntxrvsvd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 116 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4C5811E0E7E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjp7arhyd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 117 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5CC8CD1510E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ev8g8px 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 118 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01BD8FABB266 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps443navg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 119 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CD9CE6EFBE1B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn66yms7n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 120 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9220300891BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzpnyx0xm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 121 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A146BA928D89 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpcjlnww 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 122 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 817218D339F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4xc0qh5e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 123 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B41E5246209 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg359c57x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 124 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC1A575E2D55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppvahjt9y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 125 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2E87749EEAC8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxrza2u6a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 126 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5D80BE5024B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p22lhnqel 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 127 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C4DA9D6A28B0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc5ggena3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 128 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCE93A0047E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p230yqyqp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 129 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBE23AC244BF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p47q7lwkz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 130 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D395B33CFD92 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1perattxme 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 131 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 341E2AF887F2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ch8javf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 132 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 459631D4E833 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89myttad 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 133 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E1AF039FA2BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6fcwa980 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 134 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47593DE41A86 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnfr8tyut 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 135 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AFD1464B20E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyhc2h8j3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 136 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D285F9E450DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p65zgn9ge 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 137 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88D7B7CF96F6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2jfa3up5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 138 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 887B3B4A801E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwehr7ujp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 139 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FA53619D2BD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6heahv4c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 140 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72C3CCE29509 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p57grg8lu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 141 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A37E1C7C16AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phsdtuq6y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 142 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E9447F06A19A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk8fvlav4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 143 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4018378F4D95 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwxlruz57 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 144 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88B09C339505 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf8x2pwc6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 145 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70E0D452E905 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq0j5etz9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 146 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7479C5B7CA48 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py5px2gek 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 147 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 56581C17B7FE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdntqm3w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 148 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F4881C415495 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prarkca9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 149 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 39B182E93C2B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptc7h9vhn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 150 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 241C16A0D091 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxvdcsjq7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 151 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F12BFA9B06E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf5cyrql8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 152 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0A533B01E05F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prpzcuwa6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 153 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7C5BDAD66D26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28mm5z7j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 154 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E4973AC8D519 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pss09325c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 155 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 77C052CFA5F8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdxt50dhx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 156 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 930AE14BF116 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papxrwvc2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 157 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 30B9D606F084 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pevw8n36j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 158 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A7B0435C448E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px9fl7828 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 159 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 11EFB52C4D6B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7wjh0jww 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 160 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6BE82B45E5C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwawnc53u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 161 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BBE3411EBC12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmadmqlkr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 162 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FDEFA6CCADE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6ggzjxc5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 163 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7A0C0D8E2D0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyt50l8uc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 164 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B78859C7A4E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7re4ppgr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 165 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DFF70E327AE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pffa0yd8y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 166 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A332CCEC671B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdsue68yw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 167 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 862462A7F1E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzat48ajg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 168 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DFC93CE3ACE4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4f4dnje2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 169 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0A3104687F49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7axt7v9m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 170 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0EE232E4B192 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6xam9965 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 171 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8DE1DBB7FF7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwp287xj2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 172 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8588D414EA53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe4trx0lq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 173 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FCBAA0F6AA1B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgqn0d9cc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 174 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AFAF4E5BDD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psgrgz3tf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 175 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F6A45BC2A099 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwrnsmp6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 176 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 932ED5B96A3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plwl2hz5v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 177 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2E2834669C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyatdaspw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 178 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E979BAEA59B6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3xr6ynnn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 179 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2412B155C4FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptg6cj0wz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 180 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C2D9F77E3402 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd6cy0uat 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 181 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 990C06749CF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p64tymath 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 182 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE6B6C1673BF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj688ltlw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 183 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC8CBB013A18 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0j2m2p3e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 184 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86948600CEBD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p90ua2m7r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 185 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F7498403DA8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8fyl3flq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 186 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8515DA1181E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkrlxcfae 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 187 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3D2B65DF090E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p06w2f84l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 188 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DF4B4858A3D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0awlpvrc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 189 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6D87809D75DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdfy76j7y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 190 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD63088DFC65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9aw3lx22 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 191 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EBB002D0DFDD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9mjqmdj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 192 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22F9783A4D33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pex286jpy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 193 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6136869EB967 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pup2g96fv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 194 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8328382012BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plz8q64sz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 195 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7E40FA14A4A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p04036q44 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 196 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6064C5280DFC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqxxzpmt5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 197 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0B8A652893DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ndeqhtx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 198 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 703B3926DE75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppqsh3yxa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 199 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9172909E626 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz8rg8d3d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 200 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A405C1C99E1E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph97kerh0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 201 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80E7EEE3167C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8qgnpdpx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 202 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A9E08A6365E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0wmnllqn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 203 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AC5AB8C05DE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4mxzpevh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 204 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F79715284F53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p574jjpte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 205 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1823F0DB3D8D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjh983y5p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 206 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F98AC8B3915B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph06wwk40 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 207 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0E3C50DDFAF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8kpxqrkz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 208 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6B3C9EF33387 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5hf0pu8k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 209 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6637F0CB66C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p90m8xa9w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 210 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B5AF639381CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptcagm6h7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 211 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 901A498E5FC6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc9z7xpmz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 212 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F16CC3ABBFA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prj89x8hm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 213 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AE793995649 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plhpup3v6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 214 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6D95CE8AE205 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prf8g54xa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 215 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0186D308C95D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd0wp30na 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 216 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F725A8CC919 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmgs876ld 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 217 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA7334A04FAE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8cwpuf0e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 218 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A8DF21E6807 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pefqglcyj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 219 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4ACBF82FAD8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5t5tpugc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 220 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9347ACD8C54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phcvm44tg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 221 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CA41554BCCE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p886te3aa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 222 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 080F8BABDD3A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyae6gexg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 223 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 175BF590E42E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxpc8kwcx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 224 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 940C88CCEE8B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7jlr0ddp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 225 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE0C328970B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pss8k3mqs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 226 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 242EF6298EEF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hkhfpuz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 227 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4DCE392CF68 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0eallfw2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 228 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 93C4C3B139FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4e7gq7t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 229 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72DC57DF8B56 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prc5fgc7w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 230 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 335658EB19B8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnphced2c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 231 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67D3DF967180 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pearf3s0n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 232 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE37D36C5F15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd2g9kltd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 233 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F96719A9F81 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p56yw72wd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 234 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 62697E865A0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmhceg64w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 235 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 646E27EB0DE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3a7cmdml 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 236 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA64A3A530A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95xf5z0n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 237 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 778B17E4C574 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p74zaca2g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 238 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7786EE1D987B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5syulu6w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 239 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 93681D4529AB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p06rs7k0e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 240 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0B07A9901F06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pezk8hnqk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 241 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 438E5B17E7E8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppxkfz9pl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 242 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F339BD2803FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puhx3gw00 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 243 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 490F4F898D66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk8xs3m9k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 244 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 411CB6E1E594 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfv2lcvsn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 245 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D021B6834726 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw2cx8jfd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 246 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6DA3F4F8A2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puulz9vwr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 247 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8772473FF9A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmmefm2j2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 248 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C8A85C5102A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp45aljx2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 249 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B9CA28E55BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxxagw3qr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 250 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F1365F17C29 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2f429fy0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 251 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA4C95592D52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puvz508mt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 252 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9DA54FB02B7D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7nyhfj0g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 253 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D20907FA454D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcl02ukuw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 254 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B29FD5CEEFD8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgusfflfc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 255 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D01EFBC14E8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6gerrm8e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 256 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A696481D2F62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpv2jkfj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 257 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ED92A05BD247 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paxmt6vxs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 258 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6ACABE1F34F6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pge2uk0l6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 259 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28623BC75D8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9lfvqema 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 260 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0E40480BB677 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnzlkl3wq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 261 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0A6831B8C6F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdpgzauca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 262 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4B5790C2AC99 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p46cazpuf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 263 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1CCBB5BE077A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5pkhrp59 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 264 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5A45943F0319 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pakejj8n4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 265 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD2201AD448F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn900qsh9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 266 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DF83B415CF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3xtv9sze 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 267 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FE5E872A20C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w42xpua 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 268 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B48B84C729CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py3r7jn77 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 269 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67D8AFC2C869 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmw4zhmzy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 270 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3D083985E8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqan2r4ah 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 271 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E887D28E197 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papvjgjcs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 272 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 748FC25822BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3gvjuacc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 273 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3669195A642F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps2phh9fq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 274 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90DBD9B6C8A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkqdaaya 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 275 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4C2C8F3D30E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3zmnjxrz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 276 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AD5C6E34DA0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc58vl27v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 277 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F1C2B8C407 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6d430tdr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 278 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 674B4E31CEDE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ns3ltzx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 279 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 38003A151495 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmrtsd464 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 280 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 29D94F903FF9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvrvwnugk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 281 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8A314B37C2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psn8nh93s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 282 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5EBD9C1D6905 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppc4vpatu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 283 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 427DF1419720 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pecwsz3g4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 284 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2704F15E0B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0sa7wfhu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 285 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8BD782604E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfhs2wjzs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 286 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 232D9239A85E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p34cej76f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 287 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F1101CAF966 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p73yt8hxv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 288 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DD0A9831FF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph6aw3zms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 289 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76EBF184B694 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2k74p5x8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 290 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEF928707AA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prshmcsrq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 291 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FA057D6559E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjz9sd04d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 292 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8FE6D46BBEEF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdtj9l6fk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 293 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0EE8922667B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcvqgyml 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 294 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 25C2B1CD8ECE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkwle32ke 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 295 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 776F7CE79B4A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkesymlqe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 296 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F303235D6DC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9wmafu6k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 297 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B72453A60202 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptuu3gltd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 298 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 504F43FFEECE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7p8ktea3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 299 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 20CC2B7371CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe8k90fmd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 300 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BFDD797CEE92 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p03evmafq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 301 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 04F5FAA1F32C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p746vxsrj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 302 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E96CE7887C5C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvlqx77q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 303 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 563050A743E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p630ju8gs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 304 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EF100406462 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pptgwsq4q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 305 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 105F48B03E5C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p660dj2cm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 306 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B738C6C8E26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papevync8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 307 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F9817970F08 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pekmlz547 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 308 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EF78942DC3F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4m8s08hr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 309 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 53E7815A95AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwl8wzdhu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 310 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5EA628FFB195 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pumn3xeur 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 311 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9527FA46D54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p35gyz6pj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 312 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E00C07589DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgp372z78 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 313 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5DDE453887B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4p93pwh9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 314 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8434A25B7FD2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskudhlnh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 315 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F94DB78142B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa5nxyst3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 316 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B05A083A40D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmxv4ckz2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 317 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BB0B8EA5637 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pasa3kl80 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 318 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 65ABC1AABC9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptnhhlqa8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 319 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C623F7751313 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvzxdeat6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 320 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D0C6A0E849A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pswupgewk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 321 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E74B5C1222D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptafjry65 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 322 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6DB2F059CF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pawnuu644 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 323 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F6521062C65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2fg5vzte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 324 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33CDFDF3D335 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps0sx8unv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 325 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80C922C9DCCC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkwh0ztfg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 326 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F46B0948173B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4h72kzwy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 327 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E03EA72B1271 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prw3v8gp4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 328 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4473DBC18B22 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzv7xvc05 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 329 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8009F7D3424 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqjmeva56 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 330 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 726B38438110 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p32yysdp2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 331 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB8057D35A87 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwggvdqld 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 332 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 599408EED363 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pngynqh0s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 333 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC3607A39DB2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvkzwq5p5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 334 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E6E32E596B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskjpmye8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 335 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA9D40E03E64 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwqswq434 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 336 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3D80193E3E0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn22sdq4a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 337 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7465C2F52404 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk06amu4a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 338 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 59660BE76657 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plfe883qv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 339 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD8D582FD832 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz3pghxtx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 340 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 330C55FB17F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzdsnxy9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 341 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD7A1D5DACD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0a5u2uj3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 342 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7461F7F0880 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54kf8p0n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 343 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E7B1264E01C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwk5vkfln 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 344 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2B989265247E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptmre4hv8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 345 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 06DE3DB54492 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pffm0j3jn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 346 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0312A1614435 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt2tx6xrn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 347 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 597FCCEBAEFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqk5wusea 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 348 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E90858AA604C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzvjghlsh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 349 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4ED55BB5918F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4ekdtsqz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 350 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7CCDE7D5B9C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr27jvevq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 351 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E3EB4F39DC9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzl3d2yls 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 352 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80D8FAF0A536 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7zy4rahd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 353 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 171A395E1A6F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdydhqsdn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 354 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8771CB2579AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyl95c5zw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 355 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42DCFDD2A8A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc402k37v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 356 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 10805612F115 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc0k82uhm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 357 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DA546C5D8A57 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plnuzu0de 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 358 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 179C5F9EAC02 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdws78pe4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 359 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E0E2A9873F2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pygmw4dhm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 360 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F58F598E185F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcl7cjhvr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 361 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34AB22FF1AC5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgyvf8l8j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 362 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0C0726CF27F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pppp84m9x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 363 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C0C09EBBDA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqja0v7yr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 364 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2A214D7215C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9r93905r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 365 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0596272B9EE2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwugfh503 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 366 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E63D3626A1E6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plyeq9rw9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 367 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 026F63D0CA66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p36048xna 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 368 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DAF30AB3F656 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxjx5kg47 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 369 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F9478B1803FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plcc2z8p3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 370 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 51B015249513 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prqajtsja 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 371 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 873EFED65338 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt3m7uxlk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 372 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49C2F7DA7BD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p69k0xjpe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 373 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CBE0C0C38B49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxfkvsk33 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 374 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5BEB66B61AE1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfqxufcl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 375 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 570E8D7251CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pll28z5e3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 376 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EBAACB51834 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl480arll 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 377 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F04EA849189B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puaf33ckg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 378 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5118B1632196 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0juk7k6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 379 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57A7E747D32D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p20eczuzg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 380 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F332C3B19EE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3l8hx40 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 381 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E19502936852 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkujhd42s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 382 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 74037245E585 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm3j09mq9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 383 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 46A65EC3ABC0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm0s6cjn4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 384 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19D5233E8599 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prmdzu0tl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 385 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D91B4ACFECD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phpjnxuyc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 386 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 739961F28185 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwu466jnj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 387 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A3399A025D1F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj3p37649 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 388 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0E4DEDD9C51 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pakl3fwzf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 389 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6BC31AE9461 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvdsfp6zp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 390 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A732693C9F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3dkyzgjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 391 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C4DFE088CB2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvqfmcee9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 392 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 142230D29F05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqhxjgjnm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 393 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 23F3B6CA23DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p029ely9w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 394 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70CD9165B071 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps9792hjp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 395 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D61FF28D1F19 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwl6tmn7z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 396 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 82ADFE360EA3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp5v55qhr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 397 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 007318F1D5E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzq7drw3z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 398 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76360EA82D14 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd4r7jd97 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 399 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7D7572F8009 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgfaaanz2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 400 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 428E08638D43 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf9j2jqaa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 401 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 319EDDEDF6BD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptewqjfjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 402 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1066105EAE17 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkwrne7r5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 403 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E90766EF1F40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjfd8h7ps 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 404 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 062EC219E20A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9lpsgw8p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 405 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C72636DABD59 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq33wq2d4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 406 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EFEAC10968CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p989r7dy5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 407 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEE437692356 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdushj3qw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 408 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4B880353DC0A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph4vzk7wg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 409 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2E38F5145600 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9aflsh2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 410 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2760466AB334 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr5rmfvke 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 411 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 82F8CFAF4481 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plrgzzzu4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 412 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 302D51C4AD01 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8lkv2d8v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 413 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E46327433E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqnnlnuhk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 414 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DFA324A131B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjk7jmxt5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 415 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03EC1A0E7ADA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7q4vrv7k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 416 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99320333FFD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwag64fwf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 417 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C242F5A07427 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq5l5m877 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 418 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 77183E035D45 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfs2m7m7w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 419 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 539096959397 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv0aarwww 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 420 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76AC37ABEAA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p970vzl0h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 421 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92B4218B92CE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfga5y86r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 422 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E143782DA710 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phdn84f92 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 423 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A989EDED6A39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p44ct05ka 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 424 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AC7CD2D6DF78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2j8g6ayn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 425 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 005F3E2338C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pccglfqyh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 426 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A50EB540667B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7u9hn8m4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 427 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F60C64038B8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgvwsmrjl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 428 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 93B0506D9951 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pah86fhdr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 429 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8D4CF068DDD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk50xdz67 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 430 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E29FEF72CD0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvgry5hv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 431 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6CC42A837330 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl2dceepf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 432 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F04EAE147BC2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcphpy6c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 433 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E346B5991064 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk3pe5mrz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 434 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88127981C2FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8hzvxf9m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 435 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E085D805BF9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc7fs7nu4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 436 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 97C0E2B2B1A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pck08z6s9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 437 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7B608E03B9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2jzww2sz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 438 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7E49A172055 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puyc5qykw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 439 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72BA556C9606 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfethw925 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 440 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF6532535900 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmja7v2nr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 441 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FAFC927269DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4qknqzp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 442 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8778FB5AFD62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps8tky48s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 443 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67779C1DF958 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prre725hc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 444 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B402985E961C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkvcgr4gq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 445 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D986B86B85E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc65xkvya 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 446 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F95762AB571F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmzd44rzm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 447 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 353CE6C97EA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvgkqsd5t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 448 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FDE0BD32A0A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8gdql3k6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 449 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 824D6BEC894E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph8xqhnur 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 450 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FCEE47A2F258 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwu8jlz2k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 451 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76911BA174AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2c0rpjca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 452 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 594D1B66BAEC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw8pt4m7z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 453 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3034B82AB692 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc2ye8hlq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 454 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A780090E98E0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe3lhsr88 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 455 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8520E80905B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk0wytash 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 456 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 254D13CF7A88 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2suu8s3f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 457 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86D54BF97E40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq4ujtdr6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 458 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F7825D7D8430 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9zw8yne3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 459 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36A7DE87EECD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps2adwq29 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 460 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D295B8784700 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqzq4gasl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 461 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C97851DA053 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p79e9qtzz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 462 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B59DDC356CF9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkt7eqscn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 463 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7461FFE2F25D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prs5wkcea 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 464 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36AE1D8F1DD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyyjk0m2g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 465 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 04A9007C8B88 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj5g2hpnh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 466 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DF85F68129A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p00jyuu9g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 467 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C48FD78BD8B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcsgez892 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 468 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F75F3EFB46A9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv3et4r3v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 469 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79984AB19B39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pknrc02z8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 470 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5636B53F94E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk0da6mu3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 471 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47937BEA3E85 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvdaawztt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 472 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E96E2DC26FFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjxuxscv9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 473 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A0BD459C1BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paq0fqsah 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 474 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EAEE5FB89BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzs5g2nk6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 475 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22D69F128870 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfgt89fy3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 476 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BFCF24618B44 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phw7y2g47 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 477 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C3F65DC205A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqmvxuguc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 478 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2062BA16B05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdnzjue69 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 479 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE9F840F835A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptz8z4waa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 480 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D68E84CCDD7D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p68usdk0q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 481 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7238E059E0E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p52jg7yp8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 482 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 45FC88B30544 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28x5tnsu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 483 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0CC88FD8CC0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvhmsf0dc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 484 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8A741893F6FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psxw95juw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 485 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01B3885FA908 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psuattr08 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 486 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7090FB14E89A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqnuwh8zg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 487 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2154F419FBAE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnqr442xe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 488 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D473E4622B5C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkalu39t8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 489 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AC2BD56F39E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8mnvl86k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 490 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B15802D0AF58 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puyfcuedn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 491 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFBF0277CA5F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe09szw3p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 492 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33B0DB819DCF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgqwl730c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 493 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE2651068489 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk5zegre6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 494 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C0C838A3032 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqw62rga4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 495 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0E4A7CB37A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxpnylcrj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 496 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FB7CB50AA2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2waq9kzy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 497 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1B2707FDF06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg2a8pe5h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 498 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9306E064908B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8ndvntf0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 499 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F56A6961ABA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmqtwakfx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 500 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CEDF51F3A780 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxxqatnjw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 501 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9FB0450B5406 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj6v7vqa7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 502 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8E6C5C89EEAC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmth98tr5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 503 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B02709C27D07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5wvwsdpv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 504 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40E97AA2DDFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3shjradw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 505 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 81759070BB2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plev6v0el 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 506 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF0E5FEF52D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phy8arayu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 507 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 256EEEB47531 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgpeug2zf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 508 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09DCC35F021D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pykev6hw7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 509 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92212F333336 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9ns9egqy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 510 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F73BF8ACB14C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq6p40yk5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 511 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 915144ED6A0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p568d0ls9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 512 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 64066E0E5AFC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psk7fsm3h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 513 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 186DE2ACBAA7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px4n2jsv5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 514 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DE9047A57B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2sn92zll 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 515 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3E0E26A02F11 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxwpu00pq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 516 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E4A12C962236 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pufnrxhqy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 517 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C69DC16A369 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phsregkqa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 518 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8775663E82D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk3nc3uew 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 519 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9753145342CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0au6nq4l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 520 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9674CA8620AB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prr38ap24 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 521 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A3CF29D12F33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psm0fk9a4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 522 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A383B47A51A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk948vhl8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 523 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 742133802DD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p50wj3vh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 524 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9B002BFB619 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjyyraxy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 525 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A805961C7710 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phh04vtpd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 526 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E7A90349A90 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3c77uml5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 527 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91E7C5439B2C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkxpzsmxn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 528 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D38812B33C3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc4ta55j5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 529 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 345554F8B07D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvkxwf7c3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 530 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C0FFD6D599A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnu29c37s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 531 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F921E81B5A6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppneh05fy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 532 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 153ADFD9DBE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc3whp6v7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 533 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 065FDAE30D65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnvsnwfka 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 534 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47443745E189 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plt4j4huh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 535 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C23D7E9B09B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg6pfj70n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 536 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57FF4CD9DA2D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppv0ghu5d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 537 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB9E68C1902F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd2stvd9e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 538 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2213869620E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsgnywk9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 539 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8344942010D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdduv6hlm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 540 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31665A4A5CCF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5d008sgz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 541 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E69797FE708F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj6tgwl0f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 542 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0E2408288CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz0gk2ytp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 543 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C5B340C0271 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyfrfgvsz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 544 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B40B9508DAA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plgqhzzjw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 545 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 537CD67B6D3E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw2umh5xz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 546 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EA0F1523EF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu73r9k43 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 547 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 63EF1DD73AE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phcc8e00r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 548 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 081AECD0AC49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8r4tja5a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 549 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F9B23447199 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnxqrr730 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 550 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 37CD33079C0A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7676n0st 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 551 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 23D1B1F5EE34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psc53sr93 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 552 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8A7556CA31D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pynn7hyw5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 553 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3542674C9AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pshndp2v2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 554 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0DE6226480A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ydsew4h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 555 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8E63B3F83095 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7gqau720 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 556 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9186B61F6C0D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p80nmug6n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 557 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B348574B20AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8jptvmmq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 558 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 110EA9619320 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phgmu8mg4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 559 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D821F733D12A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0xgyamca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 560 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C5EC2CAEFF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prrfrjz5j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 561 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D08D6AE8150C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5plg78vd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 562 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8D64C0B5008 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmunt5wfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 563 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD4472D39554 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkvwhgkuf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 564 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8359B98D1CB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prdxra49g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 565 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 83EC0791B088 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwy4dyeg5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 566 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 159B926E793F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz97a5sny 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 567 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CC735A86C6A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps733gy2c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 568 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FBF7600452C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p78ckfp96 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 569 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C338B54EAF37 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw8dl887p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 570 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7EDC956FC19 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnrxr5pqr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 571 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B92000674A0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2zkf6zf7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 572 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3258A07AE373 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmnmrsg0z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 573 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA373FDABA55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn3584gz5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 574 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DE3F7F0F661 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5029gllx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 575 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B4550ABB8F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcpdgfnup 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 576 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7AD594EA1B98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvcs8yqat 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 577 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3A0305966BFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptr4g0gjk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 578 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C5CE8A096E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn8y6jw66 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 579 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6B4164EA6E78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0h5va9uk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 580 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8ADD487C190 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4222dep8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 581 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CCAFD684D4D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plw0cc8t2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 582 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28E14763616C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph5z8qngu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 583 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7540AC521133 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2mlt7tjf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 584 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 713820ED32C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdxjwdncm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 585 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A768198F0C05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7687c0vq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 586 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A68266A79F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4ca8ka98 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 587 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D97BBA7C1A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psesj7fpf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 588 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E66FBB31D71 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe43hcjhp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 589 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E626F69481A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd3w730km 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 590 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36018D072CCB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzs620wed 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 591 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 962C4B882013 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5rddjwhc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 592 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E70B43ABFE35 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfzghtnvu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 593 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7A2D183DA6D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8tlzmhuf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 594 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E3973747932A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv73cpxe0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 595 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3FECB365A04 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa5lw5cds 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 596 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EBFD6B7B2A53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p637jql8m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 597 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2586B770FF9E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8da6h7e4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 598 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F02577348F38 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peedlle3r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 599 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C6A3A01E511F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peazngh40 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 600 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DDB1F554F63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyxxjj6p3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 601 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EE1B28E10983 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2x5t9u77 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 602 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31164095EC47 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxv93qk6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 603 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70DE8D65935B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pue65m5y7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 604 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 13424685AE40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9hhp9gq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 605 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 780EAB16892E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu46x3ash 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 606 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FFE31618ED17 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa4lr8u6w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 607 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7C16DE036948 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn3rpvga4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 608 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB581EEF4F63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfgjajest 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 609 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9FA33E5C99D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxt9ed4ge 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 610 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A52A799D37A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps6m55c85 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 611 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 24F66598BB36 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmsp5t0nu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 612 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F7ED0022E3A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgtldjwp2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 613 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6B7A9017F5C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdz270j2r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 614 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 96344AC1D3E6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnz00vm5w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 615 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E15FCD1ED34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prnlgyssv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 616 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 050EA65C43D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl08c3snr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 617 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A3DEE2ED2AA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph0aau8gx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 618 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3629E9A343D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p96gf3rv6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 619 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87E0FB70D018 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdw28zngu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 620 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85F36AAD8D23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6uzn2msz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 621 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F492CC2743D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ln7ptyp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 622 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB5963269EC9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwvxp34fn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 623 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 729E4A40EED8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmx09spp9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 624 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C27C6ADF5F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzd6fk4py 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 625 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6EB1369D04D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqumxxyce 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 626 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8F3664488E32 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py7k7hg7m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 627 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F77E73CD098 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3wyfy9sz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 628 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79E6065FB2B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p43rpd9wn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 629 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 44DE8E4505BE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm6gf6v2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 630 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F6EAFF782C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwg3k6nk0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 631 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F78FFC97646 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4gr3svxa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 632 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B71F061A0BB0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pclauu4pv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 633 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C38799E2877 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7js9n5nw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 634 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE424627D3A3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd7ypuu4s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 635 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E151B754FB54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfevnnje0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 636 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA2E67C95174 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7u3ltvf7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 637 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0DC0F92086A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcccqrcgn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 638 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 434C03554365 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjyqcuxmx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 639 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA6E702B8887 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyqh2g8x0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 640 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2E4815DDA36 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9xyev2ys 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 641 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 752CC7E9AB98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjlzj2uvw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 642 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58F48506D57A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8upch6pr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 643 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2C3768F4977 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn0vug9jh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 644 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 43FA0E8AB9FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg6f73mkm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 645 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD705941320E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcd90zj8a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 646 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CDF29B13520 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz544s6cw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 647 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47215763D045 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0qpr96gk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 648 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E68A79998456 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9jx895jv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 649 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BBB9D6B33432 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psvf422j2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 650 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1913FCB42A73 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpcm4wta 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 651 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FB40AE3CBC27 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmd2p4en2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 652 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 07B7689F655B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnrq0r9z3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 653 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27C03A15FD4E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puxyhqs0f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 654 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4896386F0F9B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peejvg867 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 655 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1400EDDB59BD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5654wn30 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 656 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D7DE2605E63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkjflrp8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 657 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C9FC1362961 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxvxeg2fc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 658 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6B132CDE2C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p39wdlvtx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 659 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DD54D664517 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdxnmu089 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 660 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1522648CA0CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjd6dwwdn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 661 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B61E6130F4FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7kkcdspg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 662 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 77EBC67EC368 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papg523w4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 663 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D1D206F14CD9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p76fnwecw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 664 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 61A6DA5A465B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6n4u6mlq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 665 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F41D8CEF8050 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hugsm8t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 666 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17E88A5D8C1F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pml09p0wa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 667 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0048154C8DF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p74g87gwh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 668 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EBE5FAFA375 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psyrua0gd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 669 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBDC97D16026 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzfj22866 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 670 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 69D969E482FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p787h4mjz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 671 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6EBE73BCE5F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqamgycvx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 672 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEF340D9A84B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pglc39cl0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 673 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B0BB96AEC66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxj9y655 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 674 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB7BD8ADE6FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl9mk6xqh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 675 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A9FDC1D7AE43 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdf0mv4ct 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 676 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA2D51E94982 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptuqg5xj3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 677 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C04291F2940 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt0qz7m9u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 678 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C63A149930D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psfthrc5t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 679 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ABF3B027A4E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkgu62wz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 680 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC7DB2761A65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pukl374e8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 681 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC50146CC0FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4vc6gz03 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 682 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCE223960CE0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzfshww6d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 683 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 21E6FC0D28DF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj5dpu6af 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 684 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F7126F3EB5D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p70xj7jyp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 685 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 872915F905E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmda0fsa7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 686 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 168F4BDE86A6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px0vj67r6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 687 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8FED13C16C4C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pask7ppnc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 688 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3A3B0C2C784 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py0nmasfr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 689 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D74A919CC9E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkyme6cm6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 690 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0B1F16B0C63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw6g69yqf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 691 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7472D7E13DFB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p67qw2q4p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 692 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C515960B4F3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqrdepsl4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 693 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36D253B90EFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfla3lvy4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 694 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A491D8C8797 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnhhyy0la 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 695 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E112064FF189 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0zhgymu8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 696 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5F3678327 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvj7ndpy2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 697 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D6F5EDD4FDE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptwnl9t52 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 698 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 038641B10ED7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4d4wgzn3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 699 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4EF2B0A5570 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdl3rk3pj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 700 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34BD893B8158 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdsma30dj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 701 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F22C583E41E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9kq3y2rs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 702 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C47D1116ED0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf9tl29r8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 703 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 55524EB83341 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmqq52pmd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 704 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5616A75948DC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvhl3lye3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 705 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5201EC95C93 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p30lq6vfr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 706 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C272E781038A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3cjndwed 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 707 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 754F8AF83714 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pugv3cq88 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 708 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBADE8FFE4D0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0zxjfhdz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 709 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC4E59753A41 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwl4vy2sv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 710 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72F9C9512D9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvx50qfp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 711 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09443174EF2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn3s437sa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 712 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5063ADC4ABB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4a046j9u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 713 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3BE10820136D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paw67yp77 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 714 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 785B2BB41B8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcq3why2r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 715 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4803B83CDE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqehhwjpc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 716 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85F2EFC8E640 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmznuzz74 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 717 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8D42922504A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkufmfwkv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 718 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67867D9BCA26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptmtfs502 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 719 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58CCC0B79C0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvdc7y6nf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 720 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0CED3184CDE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1palts4sj6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 721 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F84510EE514A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p72pw4xj7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 722 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2AF03B8E1BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcld26dd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 723 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E95ACDEC1467 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pupc0stwd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 724 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EC7C90519103 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6hr9edzc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 725 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCA41045C215 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqhut29wl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 726 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CEBD4078983B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvxrnv4kd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 727 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5F44D580E68 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt2aklpu3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 728 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 73A0BEE600E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2e3lmvhm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 729 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15415B497C8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3qqnjdmc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 730 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB97C7983BFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr638hu9l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 731 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FECFBF47F5D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puh6338h3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 732 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 089A9EFA8628 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnhkk7r0h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 733 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D45289F3656D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkmrauee2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 734 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A6EA5169CA62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxjmpqscz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 735 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01064F4210D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxqfshte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 736 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3D46288B1E73 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwr8wa29j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 737 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A59E08CFE9FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjjmh5xxe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 738 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7373961B9EB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptg6q03xa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 739 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A425AA84BC82 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcqlvj6ya 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 740 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E7274992590 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28y75slv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 741 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA8AFD0F04C3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnfy8tjuz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 742 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 97E06E7F8738 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pctp0myss 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 743 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F2DEF19106C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p20u75tsc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 744 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DF940D94096A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1payk7g80e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 745 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A6A3F6B97408 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p26jltsrm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 746 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B47BDDB667B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ehv0xxs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 747 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C32D9EDAC7D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px34d7tcu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 748 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86CFFD0CC188 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2vnc832q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 749 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 53260196F825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ql05xhw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 750 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 357805C87F87 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdrdkwxg7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 751 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCD30B5F9C14 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ed238zw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 752 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5BEEBC7C2279 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3dtd0yxu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 753 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0F557156BB7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwcq6kfh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 754 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2673C9853753 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psdjsx5d8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 755 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FBB3154220D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4f34ds70 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 756 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DA199AC8B621 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyg98mdph 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 757 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD982D52A583 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk2cpj0rc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 758 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9B28E255FE25 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2wu3n064 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 759 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2925AE6CF3A3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9c836rg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 760 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4CB398B5A255 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjpkpcwum 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 761 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CFC68BA94600 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq4mhm50f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 762 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88837463A950 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwhp07ssv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 763 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42CC51BC49DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv0t8gn35 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 764 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9CE9E4CDBDF7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg5lcjg2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 765 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B9AC5A98B319 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcfp6kac8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 766 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 46A692378EA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3c7l2da3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 767 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A30F7BF245D5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptvlsnzf8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 768 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8879F238377F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnkelgkw0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 769 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CA8FA8D28351 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3cyuyf0h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 770 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8140EB2FFC5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p32hlyw9t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 771 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3E6813B6A5A9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqsj0galk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 772 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FD80CE29A1A8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptaus0rse 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 773 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F9A9E9C77200 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjnz59hk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 774 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26EE82652BC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqch0wwym 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 775 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B0E536BEFF58 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7jzsc3xq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 776 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A13C9F2D3FEE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppa09k9nq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 777 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEF36407E0FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prht2kwpl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 778 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DB8D30A8EDC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pur8ltuhq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 779 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34D059615189 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzehu5vav 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 780 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F72B52DD2C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hes30cc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 781 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C87E2BD64544 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4f0nqq64 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 782 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5D367C31106 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwffxfc9z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 783 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AC310BC0A09 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6dck9zf2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 784 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F0077DA7709 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz8uuzhcr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 785 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C1E685D5A08 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdmmv344t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 786 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D8346F77BB45 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexdr6gys 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 787 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5CF151BD9886 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1png0uaw0z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 788 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F073C5A99ED7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqk8ucu0r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 789 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2796E0638C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pul9hzljz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 790 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB771D43E4E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p84w5mevr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 791 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7A0EFD98C160 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p570lqexf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 792 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6D461AFF6A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7mgcgmmf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 793 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E5C183AF121 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p844h9d0a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 794 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4CB63864EFA5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w57mcjc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 795 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A7DF135C03A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pum6v9jzf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 796 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F41EC0C885B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ymxchaq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 797 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7FB677BB87FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxezudwh0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 798 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5164164E70D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdy75xgg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 799 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8201AB137711 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmxak6kgu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 800 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6307AB63466C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3ak9cyt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 801 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8419022C213E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzlf66mrr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 802 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A9BB0EA9A25 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paynwj8tt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 803 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0B7E71E336FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgf3j5nvs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 804 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 253BED94113B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p44atv8m8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 805 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3615F2D4BED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz5dzjaxu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 806 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 378F949916A8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6rcsp57w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 807 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6827735F758E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px2na675h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 808 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5CFD907810DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p66kd5k75 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 809 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4DDA067E818 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqe98htgq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 810 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 593BC8037922 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa5a2ealj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 811 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 241A26794777 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv7s34vk8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 812 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26D5FEA45B01 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnm3nu7d4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 813 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 593F218C37F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p03qs5c59 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 814 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92A427DFD4ED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p825tmcqj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 815 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EDEF5EE552B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6937wlgu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 816 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 556ADC669B12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjnyu3ez0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 817 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 982B162C760C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pec99cdhp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 818 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1584831CD605 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfa7juqd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 819 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8119FF59FE8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py37fexm2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 820 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6BD42269C280 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0gra8ndy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 821 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D3E355161FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfed63uz0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 822 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8621DB7A462 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq2k8dua0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 823 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C937AE22137 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p59kpfvn6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 824 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C01BA2846DA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2rq2t0z0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 825 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 479A82215D4F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr8c4fp5g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 826 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E7D1F050F52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psqw2hk2j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 827 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BEF836610023 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmpdt70v2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 828 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE49FFF00B3B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pstrlgml3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 829 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FB7DBAA14C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppls6ssu6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 830 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 23F64EE10085 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxfdu9jkt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 831 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F590231AD93E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfspqlmkh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 832 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ACA8144A4964 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pekkj3f4n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 833 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D8DFF35F8D98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmhettz5w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 834 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A342D850BDC6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peuzur0sd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 835 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C28D542C80A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjfs8zcsf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 836 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 64FC0F08EE23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plw5se4ym 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 837 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D18DFF1085D3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6d6v5fa9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 838 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AF4E3B76CC16 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdvzw59h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 839 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 469648A7BD6D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pha2frwtn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 840 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E23E7E49CEC5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5uxnhd8s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 841 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F1B1350705AE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzcsw3pex 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 842 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94620DE525B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6hgsljpx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 843 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90CACA6D3298 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwg7f3h4g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 844 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 65E89B014A04 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pul6vvexf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 845 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86A9E8549F83 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqglrx050 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 846 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5E46F226D717 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexyy6q2x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 847 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9FF1C11DB50E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0udtk4lx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 848 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3DEF0519CA2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7lm0w8dz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 849 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 567152CA3975 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8j9zezxk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 850 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F4C3E96DF91 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puynv46c6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 851 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03F59169C284 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prqyr9a0c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 852 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F6D288309ED3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt50rwdem 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 853 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EFE389CC8CD1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1padrqf5ef 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 854 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9593ED06ECE4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgtkmjp3k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 855 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 724BB3F03E28 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw88ms3yp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 856 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 20F93501CBAC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr655hkwl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 857 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6D72705A9F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu5afjsec 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 858 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DDAA3795E65F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkes6k3r8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 859 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C50B2F54929A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pml6xcqn4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 860 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0AB534E161B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcng8lfsd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 861 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F3453EDD81F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwnesjfk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 862 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D10A4090E738 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptjvzremq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 863 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 267790CF136D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p24tarle7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 864 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E9F281A5745 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfhgwr6g7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 865 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AED14E409CE2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7pwvnus4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 866 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27E9E183A8E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcqnyjnw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 867 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2BC3CF02C784 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm9lwcav3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 868 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F802898C688C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnuzvw83q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 869 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5F8BB497C7A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pask692g2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 870 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B25A627A29A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptf2cw7gy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 871 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FA0A2B37B99 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt65z3f0w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 872 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CDCE20DA7E74 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pljfm8hsv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 873 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72802946BC10 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psuaezl9s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 874 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B0BAE619720 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn35uuzj8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 875 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 162E6B1591C1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxalhxrav 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 876 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C96671C65162 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pak9u89rx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 877 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E83AB9580B13 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq7vaa7a9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 878 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A2B99F155D48 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxuf5qw7g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 879 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3CF5E3A51706 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pprsyt7at 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 880 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 989B404E1FFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2udnh86x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 881 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4AE1CC835758 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9awetj0f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 882 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42BDA8EB7694 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgwulhgx9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 883 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4C897E6B011 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxgn50hj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 884 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A660D4DB14E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pssq8jqwl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 885 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C68E049F982E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptztv4zhx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 886 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 61EBE80F0711 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyz8suttm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 887 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E1E3024C27B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4pm327hu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 888 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 373BF4680760 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4qd7vuck 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 889 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71CC4DE6C0A8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psymqm38f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 890 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D0665A62F25C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptc2vwsyr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 891 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A335684D6688 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppnuff2ea 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 892 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C4DF81A7A9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgx46xc96 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 893 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD60907F4E3F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4xs5l7yw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 894 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4BF4219C52A7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0qn3dckd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 895 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6692E0D88B5A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0qe9djgf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 896 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6A1F2388F787 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3pwl8yt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 897 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E504EE3E35E4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph0h7gvd8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 898 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A442B8A8F990 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2wnwswev 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 899 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C47B40B86123 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4ktsgj48 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 900 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FD004A617A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptyelg4sr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 901 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FF2132A5322 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz0xx2ckn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 902 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3C8A44A51E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54ln2ltc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 903 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D2A214B0320E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdvuujf3a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 904 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF828FB66C2A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps8ewnenn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 905 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DBFF83AFDAF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk5x03rd8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 906 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90B299DDFD9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkzrjh7vx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 907 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 419EFB1D02AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdwm963mz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 908 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36B522AA4E96 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3dqv8507 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 909 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E02DD9E9394A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0dq9yz9q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 910 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 89D047C26B69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnd9le328 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 911 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D9273B5F124 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqa8dx7dz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 912 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF44698C9C9E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd5j2mhj4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 913 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD277914D549 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxsw6gw3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 914 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC1466B38B48 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6tpfmh3s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 915 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FED070BA47F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prtqmty86 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 916 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F6C4FDA8C82 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwn4d39ye 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 917 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFF90B3F1196 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph6pcweru 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 918 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79872A8FFED2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prsjj5l87 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 919 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31E4E5E6A29F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv58evmq0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 920 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3188CA752972 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py0j2c27m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 921 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D47708F3D9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4vn9v6d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 922 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA5F8627FFC9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pepnk4qhl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 923 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE51E519B1E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmntd99de 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 924 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DC238D5C91F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plaqwl72k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 925 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 178B583DF730 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py845ppxx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 926 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AC63F925853F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9agqq224 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 927 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 722A8893E403 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxvkuvqnj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 928 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79007EF2A7E1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps72z45df 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 929 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 865DEF91D835 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp87u5j7r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 930 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01A21C96FBAA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmfczlq5x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 931 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 18696DE5238D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsn2qjvc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 932 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3845E19F5CDD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ysp4pr3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 933 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B4371168E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6tekvnhl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 934 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BF4EA192BA88 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf33j6gpz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 935 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4353F77482B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps7878ej9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 936 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEF7865DE3D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz8rgs8j4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 937 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE8182AD0D86 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzkxpj95y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 938 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0C5DC8AC245 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3mq2ys4q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 939 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 20D7EDD45548 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paxggyayc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 940 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC33FD9CC3BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ldqaphc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 941 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 74C86A4606BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p932pamrk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 942 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 189B42E5E8DC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p08rspjy9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 943 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 73C842B9E586 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdzqj69zu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 944 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D01490CEB710 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p48pzq30d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 945 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34BE1651D065 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps4mdkczf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 946 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 569A727D21BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0ez8hq5y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 947 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71DD730D160B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu6c49paf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 948 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D601C52D7698 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psj4a8v3j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 949 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1AE91A6FE266 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psymxfghc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 950 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 083BF781EF82 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pah8qexx0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 951 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3143EA3B7BA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe25saqn3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 952 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9361FB2E33DF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjag24zd5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 953 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5CDDAD2690A7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prvh6e2u9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 954 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF4DEFFD6E12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw6vz22ru 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 955 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7EEA5A40B4C3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnmzhng3c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 956 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EB6B349342B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3wvee2d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 957 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 228C8F1FAAF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfnjd05fv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 958 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FE0626C3180 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5kl66t8n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 959 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71E0A4D60611 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phqck5smg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 960 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5014F60CC07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pct0xtd8v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 961 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A286086996AB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa2q0n88p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 962 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA69362ABC53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pey8yt7h3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 963 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF3CAA083210 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdj7ax437 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 964 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0792C0250FE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pre797k0y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 965 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33A0D45DE220 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps45nrvej 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 966 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B4D9E240DDA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p798ee8cd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 967 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E28D67803B8D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p289wmvgu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 968 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B090824D3EA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4lvakur 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 969 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34FA556571F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxttr540n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 970 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54A7EF0E6704 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p965x896u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 971 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D07EAFF10DB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9q0va4y3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 972 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D1C5EAC54C42 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7axz5zxg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 973 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B35F3F20936B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psxqjrumd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 974 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 024E128C7506 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxdw6236w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 975 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2EEFDC5B08D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppasph7wv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 976 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8A93EF02B8D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peawmkaqg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 977 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72F802BF8CA2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsfwjh7c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 978 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 182230F18DF0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjep4qtr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 979 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2B77F01CB086 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prmdvzpkw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 980 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 814CC22A0AB0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg8w4ef3l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 981 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C2548B0F5AB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6vvndezk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 982 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E01C85FD5DF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl5h7xjzl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 983 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 10080AFD078B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd4u8wfvn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 984 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA8606FF8024 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmlxklwvl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 985 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7EB2A9C4C18 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3fgvt6jh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 986 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01BDAB1F1334 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptda9dhk3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 987 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EB3F51932498 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptaghct3z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 988 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ABF571D45169 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plyd0lnmj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 989 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D59DADD31178 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdvmyehvq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 990 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 11D8F02E94BE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe8eahh2m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 991 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4765A99467E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv9mw6rgl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 992 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 24FB86042F33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3lyvagmj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 993 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F89CD9DDF4D6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pavqgm43x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 994 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3BA99EEC1D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pph597y9m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 995 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BFF2EBC7DF2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj74hphd7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 996 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ACF2241959C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p742arau6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 997 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 557E73A719CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9sd7cc3c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 998 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BAEA6AD5EB45 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3q8ucg5g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 999 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 30D0CC57F6C5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkj6gwx6d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1000 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01B3BC532406 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9eq64cyg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1001 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 97DF137761E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzjka3z20 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1002 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DB08AF74647 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5kly80tg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1003 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 78F39388FC39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2kulmgzg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1004 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D45799199EE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd4e8uy2v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1005 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC1070B77971 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w350yh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1006 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67DDD40F0709 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3prsftem 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1007 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F6D5C5A69F5F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppjpj34jx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1008 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1591E92FB13 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa0fv0hxe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1009 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2B0E79242302 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjd9ekeel 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1010 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 978CE32AAC95 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prszglwdy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1011 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49C7B19863BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfum2h20j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1012 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8E40B69820F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px6yt04xh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1013 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 921EE2E23DA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psvysqwse 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1014 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D395F16B40C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn5yw54el 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1015 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 00B709073E6A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py4nmv9rw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1016 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8DE82D450C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnyl9h0a4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1017 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E557B06AF66A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwdr68gq9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1018 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9DE9A58CAD5D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu907lh9t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1019 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5ACB987968BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr5fx8p54 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1020 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B84F3AA64AA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psra859vz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1021 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 685729DBAAD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqy2lxw4p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1022 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6342CDF6E230 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkp69s9v5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1023 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0ED529BE224B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgfewpzlp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1024 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47E81453C295 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plenppjpl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1025 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B9CCEE19015 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4r4k3ck7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1026 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 48ED67007C52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p74c2xf6j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1027 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 11341965F7CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjhnf4hzx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1028 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8B3B5846312 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu4dg3emf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1029 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F506249B71FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9r3npcqg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1030 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD1D8AE2F279 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89zc9k0t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1031 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94D95088DFC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu407w7cu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1032 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9CDD4296AF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plakg8003 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1033 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6CB4E595A3AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmeq56fqv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1034 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2ECD0BD3A878 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptx70ngj3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1035 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7368DFB2FE06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkytkrk7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1036 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 271BC1DA6C8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdjz84exs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1037 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A6A9363BA3EF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9f2xtms8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1038 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DE1A25737DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxydt5ech 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1039 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0447791828F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phavm2j5g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1040 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1722E97286DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl4czshfy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1041 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0DB83908575 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pspzqx0v8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1042 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79B2878358B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa9vyqj2h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1043 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47CE300C119D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxtjzsvzr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1044 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98DA5B8E332C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyav7twdl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1045 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5274AB95F429 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pasrn57s0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1046 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A42E17CA677 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7q3sp98y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1047 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E3186824FE7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqlr7gfgy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1048 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 477C11F1AAEE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcn9dljyn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1049 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EE2377B3916E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peu9v2sjy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1050 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 015A7824B88C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppuxlfpyq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1051 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 44DDB81726F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu67ht8qk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1052 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 966F3F6A3C44 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9ejmecl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1053 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8731B0E2D0B2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptwv3jcxe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1054 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8ECDDE73FD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp08z6uvg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1055 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 96C1B219DBD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm4vdh0lv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1056 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15223C3518D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px5maf4e3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1057 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA86A180018C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkfraw652 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1058 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F326ED58B9EE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0wc306wn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1059 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A373BEA6AA80 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0un6p5wr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1060 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD45318E8C58 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p87qvnavw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1061 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0B14F7C66A9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0787lhyd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1062 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E806ACD85D83 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prft8nu9j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1063 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5C69C671E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1panws7ffx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1064 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 760F30DA4CAF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxwh4qrz8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1065 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 929DA60BC8DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvna9l9wy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1066 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7CF877C266B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p68a0s800 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1067 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 02AA6AD33C6E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pullqp09s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1068 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01475B71611E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf0uedy82 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1069 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F353B47BF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnvnsu7qx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1070 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FD118B5D1D15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppzwq2927 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1071 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE16EC0FB5FE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkyd5l5qj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1072 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36BC32942754 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfmw43ft3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1073 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 10C8E47EBEE0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7nywv3tx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1074 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F61D0C092A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9n7hmutk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1075 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7FA6AB8BD4F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt0qpfwyf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1076 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8B6E5CF4A54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3t72cqdq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1077 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D4800945BB7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgmpltv38 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1078 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 14E481C76F6C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pacdhwz06 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1079 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1C18BB3FCE2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe2mwufxx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1080 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C61B8CFC4A8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8wktlzqk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1081 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0931C4E89259 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzfzanu2s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1082 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94BB2A2F082D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc59nx6f7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1083 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 63209CF0E054 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p672vrsqk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1084 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3BD50BF0EF9A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hs52t3n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1085 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90C50F6928B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyksc8dzc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1086 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1DA01C1F40FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ylcmzls 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1087 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 221094D87A2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p97xtd52e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1088 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7490CFE7F861 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ledjs74 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1089 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A2BE172F1B1F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7kvefrfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1090 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4D29EF34E818 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plkmxrh20 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1091 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 133389DD80C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w9lcghn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1092 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C68AAF19755F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9vzx74fk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1093 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80A907B124B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pulpyfw6q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1094 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0912BB864090 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqae5qway 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1095 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F2A735AB37F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pehl9ljcc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1096 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D49940202F3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5r6ags03 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1097 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 688EDBC60500 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw08cx3yc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1098 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 817F1BDD8A24 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwydfk2n0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1099 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8D0275CA3B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe3fgf7p4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1100 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6644F174C6CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pak2fpqkc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1101 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1589F875FF7F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyj2azrwu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1102 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17806CC88AE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnk0fmn0t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1103 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 50D45FC4D442 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppa0hlsca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1104 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40BE759606CC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pungw88sv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1105 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26C75F87F3E1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pansctajj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1106 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 300DD376072A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p53p7qk4h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1107 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C9F8D59BCA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puuaf68n8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1108 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F06E78F6E983 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pswxzeamf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1109 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4BACE709E023 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pswslwtja 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1110 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8149083BF4F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppx60vc0t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1111 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 698C9732F8E6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0f709vxc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1112 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7572CD2CD031 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph0lz56pa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1113 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 59B78B5924CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psa8rah4l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1114 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F34F60DC1A23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqlf932ex 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1115 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1232C10A1B75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskxvgfk2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1116 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 698A8C92508C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8w78dety 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1117 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FB0499FD3A03 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9w93hzx7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1118 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C71E18A8BD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0gvjyfsy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1119 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB0CC16144DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0j9mjuny 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1120 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1CBE956BEEB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg2vqasc3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1121 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40B08DA9CA98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9t8nqnn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1122 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F0C675A7A8D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcvp5kqy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1123 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AFB04F27A69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyvpwpz50 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1124 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D006CA0F29B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps8ue2h36 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1125 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C77E4E550E7F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfyt0vdw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1126 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFF2F576464 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxmhu4uwx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1127 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3EE2896BCD7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p79lmrg6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1128 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3CA4AB44E3AA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1palpj3nnp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1129 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EC80AE96092 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p804pp337 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1130 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F9579203338 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppv9lsuz9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1131 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DED00F5360A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psepyuakm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1132 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15A2174EDA7F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu5l4lrjj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1133 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0572AEE7F227 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p82tvvhwd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1134 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D977AC86989B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxd6u4wt0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1135 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B743A9C0A28 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phkm5n82d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1136 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FB8CF092A996 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjwfcevz4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1137 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 24AAB8B7A90B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjfng5z0z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1138 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB8E4EEFE355 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phl853c5j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1139 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DFD41DE01569 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0957v038 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1140 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 104641495237 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8kes4syz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1141 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD26C6CAF48B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvawjudvx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1142 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A0A6624F4B6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfd3jfmn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1143 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 389AF11B0944 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8adkfwfg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1144 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2413EDAA78CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyaxecth5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1145 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB9E6C2CE974 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxdpkdae4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1146 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2D53342827D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe6qyke5t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1147 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB29C06EA638 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm493cazv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1148 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ADD3946929CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p23hc7rt3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1149 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F802850EC84 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p26uvu3kq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1150 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 78EDB74A0133 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3hsmdvfx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1151 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8CEA2218E3F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr07mlghd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1152 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 48708BBFD26D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0khsjq8f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1153 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6A68BB02C889 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pceezhvhw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1154 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F871DCE622DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89x87286 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1155 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 009F4B8BE159 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr5q92ctq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1156 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71C697A27B34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5dhkwun2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1157 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72A22ADFCCAE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py53yrj7m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1158 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E07B672C46D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppxjslg8l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1159 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0B4D45BDBE0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvfx2ea5y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1160 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B0F908B96B37 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptejp4mgn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1161 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CFD3012C2FA5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p63nwjf57 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1162 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8108542D69FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9w982hv9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1163 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F5E176E410C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phqd5wfx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1164 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F1E977C1A0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc2vtdgjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1165 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DC454B89F8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pehq4reh2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1166 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 752CE65C4931 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phrvwszzl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1167 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB0D41317A39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgramjd06 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1168 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE1BA980A554 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0aaje2tp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1169 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D7718689EE4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfluyagde 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1170 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47C0380D2E8F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmfkdm4gs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1171 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEA97631B288 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5tmtfxfh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1172 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8F33E48BE1D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pju0trreu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1173 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC3AC488C940 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv9xazcye 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1174 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 190614FB4FC6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0jxtlvxp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1175 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D630DD0DCD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdg9awap5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1176 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EACA59DFB47B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3eek06xd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1177 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 856B1E3D1AA5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pywn8ert0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1178 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BAEE29679334 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7v4xxws8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1179 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF43F51A4B47 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9zclqhuj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1180 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8A6D8347F2C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phve69zj0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1181 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBF7CB824DEC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz93z8605 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1182 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A5AF9501B8DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcfzhvtzd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1183 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 203AE3D59F7E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdn6uk4wp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1184 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98D1BDC8DEFF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ymahp3e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1185 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C6B6C1BC070 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxr4x272x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1186 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 05B99723C1E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcmsqpsf3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1187 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C544E017712 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv7sc67p6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1188 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E4F33E15FD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9pndwgk2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1189 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E54368AA840 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puwslcq7h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1190 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EC29425D422C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7futxdu9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1191 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F232CC12CAE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psjd4ffsw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1192 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CAB329DEBD04 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6qmzuf5f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1193 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB2BE9EC749F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcrq38nt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1194 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9BFDEBB4DB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pajqxjpar 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1195 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F27C9EADED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmx0y8655 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1196 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 38CF7C4C6F7A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7x2ed97j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1197 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1EB74D9169A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pstwmcg5l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1198 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5543EC16F12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjrveq2p7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1199 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9AF5B67583B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9ztpykn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1200 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EDB66D8B0497 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pprwen03t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1201 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 32B95C7F6134 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3z5pk9gj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1202 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 52841426CC8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pym9t4svc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1203 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B871DE0A60BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psxuvx78e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1204 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5BD6293CBA15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt2usm2zr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1205 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79A48B82DE0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p009878vm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1206 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B59A07355517 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe555cf08 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1207 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6A96AFC1798A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfzsy8kt0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1208 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36979FA9522A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr7dcv4yt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1209 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15095C81633D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu7stqsrd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1210 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B4F4555A211 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl49rga2g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1211 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86C6E2AF6820 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmax28lcc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1212 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC79DA049EBC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4r4mw57y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1213 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9F9031C07F32 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzx0cxmgl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1214 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 727EB70490C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgaad5uhp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1215 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09BCE410BBA2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plwpn697t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1216 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE3B522670A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcut0sc60 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1217 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FADCE347942E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2nkq85xu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1218 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F3880BB46806 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxe9gcrh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1219 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 274DC727F2F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv0e7gp2q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1220 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8F70192AA3AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8yeueml6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1221 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0412F3BD943 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzwxt8ehn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1222 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B9FBA37ECE26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0vn3zj7f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1223 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 651D03CA3EDC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3uc88ql9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1224 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C477DA69E899 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pms66elx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1225 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 552984A14CA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptz9lfzlm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1226 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 123D0C618CB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paydzmmj2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1227 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ED9321B40BBF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phpssx058 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1228 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F544A4CDA440 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peya39xfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1229 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 219C8533A682 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pklklevwc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1230 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCB6C71E2B9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pchf8p8vz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1231 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEF945A67E06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9td8zxk7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1232 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF882C772A31 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ez0vsmy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1233 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2CF7A290F0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p92snlq8x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1234 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72D26424BBE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plawn8xkd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1235 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 104F4A6023D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv7f22sv9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1236 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B9D0F033CED0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pchtqjj0r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1237 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CFDA5EE4BBA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py5mnepxr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1238 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 538A62602590 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2v77ct9s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1239 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B110833DD33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn8h3w8zu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1240 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F203AF6619F2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6a8jp382 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1241 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EFA557D49A1E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd33jmz6z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1242 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3A150A9344D5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcugjrrjg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1243 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 302319DB3E92 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyd8ea28h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1244 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C74B29ED475 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p78edwgly 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1245 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 65924C064682 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8vjw82w4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1246 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 197AB2D0F2A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7jh8ytk4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1247 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 971F8231AE06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxhf75cte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1248 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEE7FFCE4780 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2r4y4ua3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1249 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EE4C7FAE52A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu2zqdeym 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1250 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 51B9DE0DB19D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peansn7a3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1251 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17A84A3DF888 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzy9wm4gd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1252 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86DD65896C6F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54l5k5uk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1253 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D0589407AC12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwm7v9ksm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1254 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4346957E818B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2t7hcqf6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1255 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5E119B941669 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmlz6g6dy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1256 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C9A92EF87CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pglcwr97m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1257 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7FABF0A95DB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5e2y6xlh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1258 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 52B18D1A73C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9g5c7dc0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1259 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 464AF9FB35F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3elhvx3n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1260 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79700179B1DE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj690nfqr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1261 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C2083FD88D8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgxelclyf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1262 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AB07AD89599 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcg76yrss 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1263 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 243DEC4FAF8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0t300xxq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1264 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEC16A1DC1F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puzysqe6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1265 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FE4169C3C7A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0yqvm30m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1266 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCA5C6E43860 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfrad66zh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1267 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 75059A2876C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl3ygt5h9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1268 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D19C69F8CA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps74m58s9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1269 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 600FCCF71D23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwq72kwhk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1270 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E6CB9FD5B10 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwqw88qn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1271 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6EF44469FBCA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prv6znfxg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1272 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 109E883B87BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3c3tsfmx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1273 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3631046E721C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puzsv40q0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1274 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9FBF7E0E258A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwu4wv5nw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1275 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 285D6F8B6A8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjk96x2tc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1276 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A4C7F1E27767 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pem9mkw90 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1277 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C6F7B2187FD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkk54p5f4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1278 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EF660873892 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf5yzrr0p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1279 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 835F368C6935 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9f7xr3tx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1280 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7C83DC7D8615 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p65uuh5wu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1281 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40B6A222561C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plygjpl96 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1282 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5C93DF0E62A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plqn9dlgd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1283 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C947435835AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpyvjp39 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1284 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B896ECE81C55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw6edyytx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1285 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EA8259A528D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plncwddac 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1286 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 030EEEF5BFD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phlmnssms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1287 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8070EB06648 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7kwgfsja 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1288 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCB2CFA4C0E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p04hxetvy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1289 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 05F146508407 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2et0ef6g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1290 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99959AD69371 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp4u6se4a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1291 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85A1283BC5E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyxs5nyc8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1292 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49A85CB1C9CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvq3e2x46 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1293 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 30FE457746BF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p69x53l62 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1294 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2E0EC3693B03 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptz8v0ca2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1295 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE8E78CC10C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7077rcly 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1296 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FC861CAC314 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkccajdw9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1297 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B01A3C75FCB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxscy56mm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1298 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E87EB71B8724 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvnvy6ftj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1299 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE808218472F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phmq22rys 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1300 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB78D654B37D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfv0vmsjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1301 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98EEA8D2D34A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plskc4asd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1302 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F6E4656926 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz0gd7e68 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1303 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 128E0941B030 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv4mxtgn8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1304 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 781239092BDE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps7hatlx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1305 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 48F89014D001 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwzj2da6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1306 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 069E70D2D9C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnzzq00tv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1307 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BBF0C00D1FD9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px453p7z0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1308 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22C4567D5BD7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pll2hzdqt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1309 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC6EBDBCD459 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3qqhpnv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1310 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 328C7AD264DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8l575zge 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1311 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6313CDD6E4B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pykgtjxxj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1312 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E1C98144068 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ppvrlm2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1313 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 313CB20C8534 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa3c9chcx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1314 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28B89AAC59B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5t932zr3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1315 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 781AAA69AD01 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plf54teva 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1316 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 95F05D5AB544 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzlxj0ew2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1317 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DA4A68A02789 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pupsjw3w0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1318 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7659388138B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prxdfaz9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1319 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 12BF09CFB2ED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq7rp9u5q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1320 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 758F7E50D995 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6asmgz0w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1321 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7F698237F07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9vewhcu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1322 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D198D89DD4C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwtvqr9u7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1323 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DF2A8B7C77E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2g3hu96z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1324 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4697678A5040 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8jme3ahd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1325 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E4847CAF180F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0cwh6u7j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1326 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 736A6317C3BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjwxus8z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1327 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 664B4517CB6B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfy3aylss 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1328 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6CA2B8641608 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8pqv2mpp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1329 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 07F672E0A3D0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmx53n03z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1330 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A460327F529E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgehd9a5n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1331 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 141654A03B94 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p22uctung 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1332 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7102F769B64C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj0pw4kt7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1333 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58CFC54BAF72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plxcj3gwt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1334 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91EC0E3EBEBC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28ej2sa0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1335 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEFFB3E05192 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plcr62amg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1336 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C232951A78DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvnzwv7wd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1337 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F2E30019F99 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkdncvcee 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1338 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6C2EAD340F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph53t8hrt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1339 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 75C424C91913 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmzw9xvvg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1340 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CBAD4543077E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plkz9dd44 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1341 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 490988F37AA0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu78ur76p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1342 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 766DFEC0BD76 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp6ach28f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1343 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3B3A8DB97E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptkf0yrkp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1344 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FB6ECCC8B34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paelu552u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1345 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC450C4659CC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppqzdl8wy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1346 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09141491B117 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmw0d7pn6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1347 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 961109887BFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr3asc24e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1348 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22E34B086135 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3g8nqfle 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1349 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F5912976EEF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzpjxwuhr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1350 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C48F5C8B151 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgpl2n3vn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1351 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87064D9D62CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ztqtcm2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1352 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A5607D94AAC1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9f03zavc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1353 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8D6388C7148 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pymays3jh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1354 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5E81F6FBA05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4af8kwg6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1355 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80D648EBDD97 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9ln3ylke 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1356 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9886435D3012 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3lz2m2x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1357 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA9750426656 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3yptfc3n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1358 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AB9C1B7F613 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7m6jwxsz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1359 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 875599CB588C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p90qceezm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1360 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9433EA58F88A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg7nlql7h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1361 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94A03960BADD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt4zkrlx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1362 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4758CF620771 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pad0c9gmw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1363 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17AD00346CB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjhnwuva2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1364 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4129B3C2E89 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkvp693u6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1365 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1D14CF9576C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdszjgktn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1366 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A00656B450FE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnl8ppcdg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1367 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5F0317A117D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5uc9g6e6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1368 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C6C47A323EB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p93upr7fj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1369 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC95188DFF69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqe0vqrt3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1370 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0651D1A9E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8k3kgyd3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1371 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8FDCE4381906 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9f97w9s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1372 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC7221388B43 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw9c4cdsk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1373 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19CCB91E35AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89gtt7a8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1374 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1D366992839C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvk90ul4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1375 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7A95EF53D7DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf6muqg47 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1376 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92F4101E0181 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p66cvlzlk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1377 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E12C6C4CF3C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps2qf0zas 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1378 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F4488E54359 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p427l3lzm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1379 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A572D3D39C21 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8pxyxjs4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1380 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0725CE2781A0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p385u62c8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1381 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 69E9CE8A0003 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phmss6fm8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1382 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2F4EF5AAE821 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc3u64vds 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1383 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 59F758E03C33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pns9wmgy7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1384 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9981218B5998 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp78qsvms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1385 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF64FA0E89CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp6hvgald 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1386 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 04E825DCE81D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgzq2j03e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1387 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E2D32E4D5CFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7cauzkce 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1388 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03530C12101D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8kdyp6hv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1389 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A73F79CA9FB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3t9zvgfz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1390 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70E8411E44FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnh0xzknr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1391 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C6740EA109A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgy7en8ut 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1392 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31718C457A2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phd6nqrat 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1393 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B10CD744E1A7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmcgtyuz7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1394 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E85DED89FF15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psgpgll3d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1395 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3578ED1AC072 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzv7jf225 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1396 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F9F7AD26717A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvjsmafqe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1397 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0211DE0010CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl7wtu27t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1398 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA5825BB86A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psnk8nx87 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1399 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 509A7A30E674 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg26xvvve 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1400 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 295D21AED269 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm2reyzd8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1401 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1623CE5DECB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prt5g7u9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1402 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D29BFE636141 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkskrjtk3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1403 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F76B17A1100 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexjujtwp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1404 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 83EE7BDEBBD1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyxgcnt90 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1405 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85A637188DAA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf82cujau 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1406 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7A2DA6795903 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkedc35ky 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1407 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4CE397AA50FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqehzlre0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1408 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FCC2B9BEB619 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5fkqssnk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1409 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 07925B2E8214 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pll7hsyy2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1410 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42F220D5B38D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0kdlgzx5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1411 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1BD7E2BE4F2B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph3js49h9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1412 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE5487D2C228 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjcdl6zlp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1413 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2FED4CBC5B8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puvx055vn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1414 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCE904E13230 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pac9drtw4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1415 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5390D7F8F4D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu7r892vm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1416 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 13559860066B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnumape4g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1417 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2517D0C04C72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcna5jsrn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1418 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 862428E54724 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0pdvecc5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1419 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19B67044B6EE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfjhxjhns 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1420 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E01245D36CA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjhvvef6k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1421 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 32CFF59EB082 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmj9a6ycr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1422 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCB5853EBB27 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px4y3gyul 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1423 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 630B3A769225 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnj3swrft 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1424 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 38E1445757AA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj3qxxhc7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1425 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AFBC9668757 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pylxm7tkq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1426 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5824B94E5BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu600hwez 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1427 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BEB74F5525F9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjg06zrxn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1428 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 902BC3E63D75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95gch28p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1429 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 50E2F064E75F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw3ae98dy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1430 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EDD4D0D639F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p574u8skz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1431 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B3DB8AAB4A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6n5a95rc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1432 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19EA0B3A71FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54sa7f92 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1433 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A4888C583A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phcw3pcyl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1434 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1295F10B4183 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prke0383j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1435 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F72D14D24F6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph4k0j5pj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1436 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B18A1A05EF62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puu3cq8g4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1437 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6453A27208E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2sd7a5a5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1438 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87F989C8811F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkm4nur9l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1439 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A908E36D2B40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pckszewxl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1440 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 016AD8D627DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxh7qac2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1441 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1154A465F61 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm9lp9yw0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1442 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 422E9F3FC374 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0q72cp9c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1443 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6141B978C2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phfmwfncy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1444 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9CFBEF62082D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plakj287z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1445 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F15209F59895 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwsmw3lc0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1446 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB1DEADE380A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4w23ylcv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1447 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9729EC02242F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgt72024m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1448 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9769DC32F634 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcale6kdu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1449 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1CAE0FE9AFF4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmg8v0p26 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1450 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72635B5F9861 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5tee76mm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1451 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B89540B70E8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcxtzdh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1452 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2A10EBA21F07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppwcm7u7p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1453 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 231C59013AA2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdll3hsx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1454 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E2363491CDA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5zgp5stw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1455 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A565A2B6BB31 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0wxqgfdc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1456 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CAC90B4A4D24 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puk6mgmfs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1457 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9C053DCF073 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdx9dwwfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1458 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D9F2044F865 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0ws8vhrg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1459 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB35598E99CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9mp9vjes 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1460 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1561C593F1CC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p609kru72 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1461 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 209D7A5FF646 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pef6ghauf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1462 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0DD8F56CE5D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyvrjyzvv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1463 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7FED18A0FA40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgyk9ppk5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1464 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DA5984ED90D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp8jr0q5x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1465 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03AC26FC355B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjrzp664d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1466 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 393D59802E78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjxpn45rt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1467 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 37308DDF91B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc7n8acx6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1468 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 589B16AD317B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcyzmy34 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1469 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3605F983B664 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgz8algtl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1470 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA6403870668 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9y8z26fq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1471 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6472F8F9977B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ke5s2ty 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1472 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92E33C661E38 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py44k52c0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1473 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DBC4869772D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkatjm45r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1474 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76D0C45B1149 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peu8vd8kh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1475 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 762FFD60B88A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95jkk7cg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1476 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DACC9CFD3E9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pge4keaj2 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1477 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FDC64DAF65F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p48s8edpj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1478 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2F142A0F2AF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfhqcnzj9 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1479 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A78BCEB9B9AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzt6klhud 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1480 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4D3630152969 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdrj2f90x 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1481 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 134006866345 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1png979lk6 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1482 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9410274C2DF0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj9tjkql7 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1483 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 914A8E330D57 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm4379d22 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1484 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AF122A9B1CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prkqxfs49 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1485 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A57E1CE6D328 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj89wqdca 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1486 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 66B0FEF243B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg7my0qnc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1487 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB582F07FDD8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0sc5s75v 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1488 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D424D949FF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqzheucgf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1489 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91B4C1B02A71 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu8f0z3xy 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1490 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 595A42D852F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa02xl8z5 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1491 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01A087E88CF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p35ndyt8y 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1492 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C15046DB06C3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcfkkxddd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1493 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 658268F1925A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw3zv4crf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1494 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5C601810ABF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pch9khr07 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1495 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76EF81EBCEB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p98tspaqy 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1496 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AD493C3E115 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pad9z2snq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1497 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ADD80BC4BD4C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxwaqxgrd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1498 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF5E357C896D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcsasy293 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1499 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 32AA91430853 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5nt37rqj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1500 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F3E58516955D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdtvx4e9y 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1501 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0DBCBCD100B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3t77ddd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1502 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFF76DD02AC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdyszpqhn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1503 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E64D34FA31C4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnr6jz4eu 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1504 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 68A4F6B020F4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4znalmyg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1505 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 73D2D3BD0061 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p742ryvcn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1506 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2AAF365FDA52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pztukecvp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1507 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 96502657ECA9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyu2tvl69 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1508 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF8AA0940B57 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paysj3tay 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1509 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 95DF7258BC72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puv9cg7yj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1510 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 355B1A56BE26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2m2dtp0p 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1511 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 224F0B353B97 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwxz57mpn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1512 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3ECCA7EE825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2p8jvmhy 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1513 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D09652ACC09B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2955wgs8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1514 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FC28891FB0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexhz5swh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1515 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4BD60386B3D7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxan3rf6a 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1516 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B020AE164680 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkt4hus3p 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1517 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 51E5E5E4D825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkjvmhsfq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1518 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1397A86195C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pszr09mhp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1519 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E28E1857312 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3cj8vh7 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1520 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F478720CE029 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptmtkzgkg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1521 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 339A9E111A66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6m2ralz9 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1522 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C9A1FB27569 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prjxeax3e 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1523 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A11DAE1E47B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptwg86wmq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1524 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8272B5AF743E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prhu3lhgx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1525 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C5D42B317E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgxvrrnsh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1526 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 217712AD56FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcsv08760 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1527 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FE9E1513D75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkf6p54gr 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1528 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86E6399932F9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9m4kn3mc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1529 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AE1E96B15DC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4qnzlgaw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1530 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 74D3BCB1D54B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu705mnpx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1531 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9F51C764E287 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phnzf573x 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1532 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9478AF3F0EE9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwze2vfyf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1533 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AF8F36096C08 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnfaxzqp5 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1534 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2EAB97408B54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk3t32m5x 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1535 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 049344D02A2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p79hwp774 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1536 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 08F408B39F4D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1petrqgum8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1537 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 39FE4B20643C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pphz3yanp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1538 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A2ED5D81BECE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pscktuukw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1539 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9469177EFD50 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7w0efkz0 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1540 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E9A59F7E68A6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdlquv2uv 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1541 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A772C345E1C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p590jgtyf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1542 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DE5D1C87AE84 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8k2fthcn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1543 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 079DB1D318AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9ash3lc2 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1544 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FAF0D51FDFB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8n3fa428 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1545 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AEF5DED81EC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg5yn59g0 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1546 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E5B2DDD2CD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzuehkge8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1547 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E63DC54E1F4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p49ytsmqh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1548 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98C465329F8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcse4jfyq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1549 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 521CE96824D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phg5ck2fe 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1550 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E96DFD9DD25F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6cvpk534 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1551 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A718685761EC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcdlyhpmm 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1552 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6D7E25C18490 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnze4vnz5 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1553 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6319C7B7768A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9pvpxqkd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1554 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 811B6328D7C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkg4mnday 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1555 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C6B18D0A3EA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp3vvu8q6 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1556 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49283DA85C8B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5hsdm7nc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1557 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A5CF574CE9AA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg9706h64 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1558 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C60E1D2CAA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyrzcwvmr 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1559 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76A90CF7594B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4efhva36 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1560 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4EC65C8C59C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0th75lgf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1561 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A80DE24EFFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7e33ndn8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1562 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A55085A12464 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prplcmr00 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1563 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 46BDC4312708 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppa35arsj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1564 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0786E9382D31 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdt5z9aec 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1565 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8F31060A1C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdzkk3fal 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1566 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7373998DCCA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p76rly3sa 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1567 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E1FB8C10AE25 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8dprvfw8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1568 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A86172E3FF55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prayfa4qv 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1569 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86FC23A722EA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px4pes7rw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1570 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7753E1DF9641 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5usmxcc8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1571 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D6F0643C8361 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8vys95zh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1572 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4B099853F350 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzc6qetdt 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1573 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C550C0E43F44 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8x7v7zcr 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1574 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 21FE2D743436 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxls33zay 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1575 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 254300F77B9C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pylq5plnz 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1576 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27B875A3A3D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3fqhrccc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1577 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F2D6E3F870B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8xah7rdx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1578 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 824B807B17D3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ne252et 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1579 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E3E724C9F1F8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgawc5u3d 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1580 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E33503D0856D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pljl94vy7 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1581 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AC0503237543 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv68emnxt 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1582 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2400FD1ECB10 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95275axw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1583 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 64C0DD2EA2EA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prnfqrtjg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1584 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2131269213C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj0rd52jp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1585 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E46287397B6F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peahr2pca 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1586 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3DB89E057BB7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr2a08ux8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1587 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9F81984856B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2pk6ckq6 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1588 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6194B371A8C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe38kwle4 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1589 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FDF4A7EFD8D5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pftspphmv 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1590 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 56774AEE7983 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkfvdjhjx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1591 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 203312C2CC78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ucvcpxd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1592 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C5493D35905 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzhhmspp9 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1593 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE06DC7B0953 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptagwghwl 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1594 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A2DA133544F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6s50txw0 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1595 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54E676E7D594 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkkmnh576 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1596 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3294BA05251D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdhk4nsqz 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1597 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 634ECC27C892 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1putnwh3ck 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1598 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC78C9B9BA0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxrqlqztt 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1599 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 649D4FE52D4C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2yn0tg9r 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1600 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54925D79432A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzud9a7en 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1600 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E3148D7AC65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prrhak8ke 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C2BA331A7BF ๐Ÿต 07db15ad {Send ๐Ÿ’ธ pc1pa48400gp->pc1php86umlq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 1 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5FE16C766A2 ๐Ÿต 07db15ad {Unbond ๐Ÿ”“ pc1ph8f4r88t}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 1 ๐ŸŽฏ 0 ๐Ÿงพ 1}","tx":"{โŒ˜ D129C24A6E55 ๐Ÿต 07db15ad {WithdrawPayload ๐Ÿงพ pc1ph5p6x24a->pc1p9paptdwd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 1 ๐Ÿ”“ 1 ๐ŸŽฏ 0 ๐Ÿงพ 1}","tx":"{โŒ˜ 53C0868DB393 ๐Ÿต 07db15ad {Bond ๐Ÿ” pc1pa48400gp->pc1p37q3js3e 1000000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 1 ๐Ÿ”“ 1 ๐ŸŽฏ 1 ๐Ÿงพ 1}","tx":"{โŒ˜ ACB1885BA4DF ๐Ÿต 07db15ad {Sortition ๐ŸŽฏ pc1pjwy5yh7c}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 61F8879F9761 ๐Ÿต 890caa58 {Send ๐Ÿ’ธ 000000000000->pc1p70yleawz 25000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C54199756709 ๐Ÿต 569dd995 {Bond ๐Ÿ” pc1pedcszpa6->pc1p9ewdpfhk 5880931716030}","err":"invalid fee: fee is wrong, expected: 1000000, got: 8391755083","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B5BF333A3ABF ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pjkg0hw7y 25000000}","err":"invalid sequence: subsidy transaction is not for current height, expected :89, got: 88","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28AC47DE7324 ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pjkg0hw7y 25000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8DE66FAE0FC ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pqeexkh9l 25000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28AC47DE7324 ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pjkg0hw7y 25000000}","err":"invalid sequence: subsidy transaction is not for current height, expected :1, got: 89","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","id":"28ac47de732413983557b315f2e9b158863c32770b797aaf6d93932bf1115fdf","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction after rechecking"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8DE66FAE0FC ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pqeexkh9l 25000000}","err":"invalid sequence: subsidy transaction is not for current height, expected :1, got: 89","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} +{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","id":"c8de66fae0fc93d4868c81dba5f53acf3a9b73177d17b1b0487701ce048acd8c","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction after rechecking"} diff --git a/util/logger/config.go b/util/logger/config.go index 9ce089f86..8e25ba394 100644 --- a/util/logger/config.go +++ b/util/logger/config.go @@ -1,54 +1,19 @@ package logger -import "path/filepath" - const ( LogDirectory = "logs" LogFilename = "pactus.log" ) type Config struct { - // ConsoleLoggingEnabled Enable console logging - ConsoleLoggingEnabled bool `toml:"console_logging_enabled"` - // EncodeLogsAsJSON makes the log framework log JSON - EncodeLogsAsJSON bool `toml:"encode_logs_as_json"` - // FileLoggingEnabled makes the framework log to a file - // the fields below can be skipped if this value is false! - FileLoggingEnabled bool `toml:"file_logging_enabled"` - // Directory to log to when file logging is enabled - Directory string `toml:"directory"` - // Filename is the name of the logfile which will be placed inside the directory - Filename string `toml:"filename"` - // MaxSize the max size in MB of the logfile before it's rolled - MaxSize int `toml:"max_size"` - // MaxBackups the max number of rolled files to keep - MaxBackups int `toml:"max_backups"` - // MaxAge the max age in days to keep a logfile - MaxAge int `toml:"max_age"` - Colorful bool `toml:"colorful"` Levels map[string]string `toml:"levels"` } -func DefaultConfig(workingDir ...string) *Config { - var logDir string - var logFilename string - - if len(workingDir) > 0 { - logDir = filepath.Join(workingDir[0], LogDirectory) - logFilename = filepath.Join(logDir, LogFilename) - } - +func DefaultConfig() *Config { conf := &Config{ - ConsoleLoggingEnabled: true, - EncodeLogsAsJSON: true, - Directory: logDir, - MaxSize: 500, // megabytes - MaxBackups: 3, // files - MaxAge: 30, // days - Filename: logFilename, - Levels: make(map[string]string), - Colorful: true, + Levels: make(map[string]string), + Colorful: true, } conf.Levels["default"] = "info" diff --git a/util/logger/logger.go b/util/logger/logger.go index 45a84546c..a878ec9ea 100644 --- a/util/logger/logger.go +++ b/util/logger/logger.go @@ -5,6 +5,7 @@ import ( "fmt" "io" "os" + "path/filepath" "gopkg.in/natefinch/lumberjack.v2" @@ -93,25 +94,33 @@ func addFields(event *zerolog.Event, keyvals ...interface{}) *zerolog.Event { func NewSubLogger(name string, obj fmt.Stringer) *SubLogger { var writers []io.Writer - - if getLoggersInst().config.ConsoleLoggingEnabled { - writers = append(writers, zerolog.ConsoleWriter{Out: os.Stderr}) + var fl *lumberjack.Logger + var logDirectory string + var logFilename string + maxLogSize := 100 + + // console writer + writers = append(writers, zerolog.ConsoleWriter{Out: os.Stderr}) + + // file writer + currentDirectory, err := os.Getwd() + if err != nil { + goto ConsoleLogger } - if getLoggersInst().config.FileLoggingEnabled { - if err := os.MkdirAll(getLoggersInst().config.Directory, 0o744); err != nil { - log.Error().Err(err).Str("path", getLoggersInst().config.Directory). - Msg("can't create log directory") - goto ConsoleLogger - } - fl := &lumberjack.Logger{ - Filename: getLoggersInst().config.Filename, - MaxBackups: getLoggersInst().config.MaxBackups, - MaxSize: getLoggersInst().config.MaxSize, - MaxAge: getLoggersInst().config.MaxAge, - } - writers = append(writers, fl) + logDirectory = filepath.Join(currentDirectory, "logs") + logFilename = filepath.Join(logDirectory, "pactus.log") + + if err = os.MkdirAll(logDirectory, 0o744); err != nil { + log.Error().Err(err).Str("path", logDirectory). + Msg("can't create log directory") + goto ConsoleLogger + } + fl = &lumberjack.Logger{ + Filename: logFilename, + MaxSize: maxLogSize, } + writers = append(writers, fl) ConsoleLogger: mw := io.MultiWriter(writers...) @@ -136,13 +145,11 @@ ConsoleLogger: } sl.logger.Info(). - Bool("fileLogging", getLoggersInst().config.FileLoggingEnabled). - Bool("jsonLogOutput", getLoggersInst().config.EncodeLogsAsJSON). - Str("logDirectory", getLoggersInst().config.Directory). - Str("fileName", getLoggersInst().config.Filename). - Int("maxSizeMB", getLoggersInst().config.MaxSize). - Int("maxBackups", getLoggersInst().config.MaxBackups). - Int("maxAgeInDays", getLoggersInst().config.MaxAge). + Bool("fileLogging", true). + Bool("jsonLogOutput", true). + Str("logDirectory", logDirectory). + Str("fileName", logFilename). + Int("maxSizeMB", maxLogSize). Msg("logging configured") getLoggersInst().subs[name] = sl diff --git a/util/logger/logs/pactus.log b/util/logger/logs/pactus.log new file mode 100644 index 000000000..95728dbe6 --- /dev/null +++ b/util/logger/logs/pactus.log @@ -0,0 +1,2 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} diff --git a/www/http/logs/pactus.log b/www/http/logs/pactus.log new file mode 100644 index 000000000..9e0f7bdf0 --- /dev/null +++ b/www/http/logs/pactus.log @@ -0,0 +1,25 @@ +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} +{"level":"info","address":"[::]:34897","time":"2023-09-06T10:25:16+03:30","message":"http started listening"} +{"level":"error","err":"rpc error: code = NotFound desc = account not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid address: invalid address: invalid separator index -1","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = account not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"strconv.ParseInt: parsing \"not-a-number\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"strconv.ParseInt: parsing \"x\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = NotFound desc = block not found with this hash","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"encoding/hex: odd length hex string","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"Hash should be 32 bytes, but it is 0 bytes","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"Hash should be 32 bytes, but it is 0 bytes","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid transaction ID: Hash should be 32 bytes, but it is 0 bytes","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = NotFound desc = validator not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid validator address: invalid address: invalid separator index -1","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid validator address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid validator address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"rpc error: code = NotFound desc = validator not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"strconv.ParseInt: parsing \"not-a-number\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} +{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} From 44633be779db2b2d7fc8ce0bafbbb065355fad76 Mon Sep 17 00:00:00 2001 From: amir babazadeh Date: Wed, 6 Sep 2023 11:09:39 +0330 Subject: [PATCH 3/4] refactor: remove log files --- .gitignore | 1 + consensus/logs/pactus.log | 5355 -------- network/logs/pactus.log | 253 - node/logs/pactus.log | 10 - state/logs/pactus.log | 545 - sync/logs/pactus.log | 412 - tests/logs/pactus.log | 22677 ---------------------------------- txpool/logs/pactus.log | 1633 --- util/logger/logger.go | 4 +- util/logger/logs/pactus.log | 2 - www/http/logs/pactus.log | 25 - 11 files changed, 3 insertions(+), 30914 deletions(-) delete mode 100644 consensus/logs/pactus.log delete mode 100644 network/logs/pactus.log delete mode 100644 node/logs/pactus.log delete mode 100644 state/logs/pactus.log delete mode 100644 sync/logs/pactus.log delete mode 100644 tests/logs/pactus.log delete mode 100644 txpool/logs/pactus.log delete mode 100644 util/logger/logs/pactus.log delete mode 100644 www/http/logs/pactus.log diff --git a/.gitignore b/.gitignore index aa14240ac..5b5fecdf1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ todo dist/ .releaser.yml pactus-* +*pactus.log* diff --git a/consensus/logs/pactus.log b/consensus/logs/pactus.log deleted file mode 100644 index 14c3cf374..000000000 --- a/consensus/logs/pactus.log +++ /dev/null @@ -1,5355 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"CF0615DF4C09","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"trace","_consensus":"{pc1pcs2k0aan 0/0/new-height/0}","duration":"15.521987878s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1pcs2k0aan 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pcs2k0aan 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B2A9370497BF","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 667ED6CC868D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 667ED6CC868D ๐Ÿ‘ค pc1pr7ssww8f ๐Ÿ’ป B2A9370497BF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 0/0/new-height/0}","duration":"25.481219387s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/propose/0}","proposer":"pc1pf25vj7dt2svc0drluwlq4mkjqe7jstrsuznycx","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ AFC5F133A6A4 ๐Ÿ‘ค pc1pr7ssww8f}","time":"2023-09-06T10:25:04+03:30","message":"vote has invalid height"} -{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 0A3D82B97B68 ๐Ÿ‘ค pc1pr7ssww8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C5A6C2CA14A2 ๐Ÿ‘ค pc1pf25vj7dt}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestRoundVotes: {pc1p779yg8zu 2/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ D486EBA51205 ๐Ÿ‘ค pc1pr7ssww8f}","time":"2023-09-06T10:25:04+03:30","message":"vote has invalid height"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"695F504AA889","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 64DE96B8C721 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 64DE96B8C721 ๐Ÿ‘ค pc1pnq2dqn6d ๐Ÿ’ป 695F504AA889 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 0/0/new-height/0}","duration":"25.39993949s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/propose/0}","proposer":"pc1p9x9srzen6z22mkwymfscus9vk87sf8egfg0xpu","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen ๐Ÿ’ป AD623B07BA3D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pnq2dqn6d}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pa6t8w6ep}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/prepare/0}","hash":"B6FAE2A328B1","time":"2023-09-06T10:25:04+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pnq2dqn6d}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1pa6t8w6ep}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/precommit/0}","hash":"B6FAE2A328B1","time":"2023-09-06T10:25:04+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B6FAE2A328B1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B6FAE2A328B1 ๐Ÿ‘ค pc1p9x9srzen ๐Ÿ’ป AD623B07BA3D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/commit/0}","hash":"B6FAE2A328B1","time":"2023-09-06T10:25:04+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestConsensusNormalCase: {pc1pnq2dqn6d 2/0/new-height/0}","duration":"35.354551309s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"18070D011450","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 0/0/new-height/0}","duration":"15.331346287s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/propose/0}","proposer":"pc1p4zp2ca8f3ldp4k923swz740q74f06nhhjt84mw","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/propose/0}","proposer":"pc1pauyx9jgc0hxqva9msxgvd00cgz6xz9g5f5rack","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/0/PREPARE โŒ˜ A50B095348C4 ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/2/PREPARE โŒ˜ 7AE2975EFAFE ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ E5B731DB81E9 ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/1/PRECOMMIT โŒ˜ DBD4075720AB ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 267B01E31912 ๐Ÿ‘ค pc1p4zp2ca8f}","time":"2023-09-06T10:25:04+03:30","message":"vote has invalid height"} -{"level":"error","_consensus":"consP - TestConsensusAddVote: {pc1pkxzwx54m 1/1/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 216F744C4870 ๐Ÿ‘ค pc1pf4e5ennc}","err":"invalid address: cannot find validator pc1pf4e5enncj24wjpteyg0zk4nmn33jl3jugf7fgv in committee","time":"2023-09-06T10:25:04+03:30","message":"error on adding a vote"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"2D5B23C343B4","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 445C59218E3A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 445C59218E3A ๐Ÿ‘ค pc1p3gpv5gd5 ๐Ÿ’ป 2D5B23C343B4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 0/0/new-height/0}","duration":"25.205875509s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/propose/0}","proposer":"pc1p9mpsvz0uyjlrk3gd32ztckjleacxgawu06emwy","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ F838FE2B9BF6 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p3gpv5gd5}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1pvzk9clw2}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/prepare/0}","hash":"F838FE2B9BF6","time":"2023-09-06T10:25:04+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"block is committed for this height"} -{"level":"info","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1p9mpsvz0u ๐Ÿ’ป CE1CAE610375 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestConsensusLateProposal: {pc1pkmap92nt 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ F838FE2B9BF6 ๐Ÿ‘ค pc1pkmap92nt}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"095F9E946557","time":"2023-09-06T10:25:04+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:04+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ F02C65C91278 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ F02C65C91278 ๐Ÿ‘ค pc1pz0y892dn ๐Ÿ’ป 095F9E946557 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 0/0/new-height/0}","duration":"25.060481894s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:04+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/propose/0}","proposer":"pc1pyw9dhu5hwwuymqqrvyfkx7en5h5fwktnd7japn","time":"2023-09-06T10:25:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:04+03:30","message":"new block committed"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pz0y892dn}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pfj7l8rs7}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pz0y892dn}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pfj7l8rs7}","time":"2023-09-06T10:25:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/prepare/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","time":"2023-09-06T10:25:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"query for a decided proposal"} -{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"block is committed for this height"} -{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pyw9dhu5h ๐Ÿ’ป 2E5511747A8F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:04+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ E863CE516E51 ๐Ÿ‘ค pc1pwsjghqpg}","time":"2023-09-06T10:25:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/precommit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#2 โŒ˜ E863CE516E51 ๐Ÿ•ฃ 10.25.30}","height":2,"time":"2023-09-06T10:25:04+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/commit/0}","hash":"E863CE516E51","time":"2023-09-06T10:25:04+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestConsensusVeryLateProposal: {pc1pwsjghqpg 2/0/new-height/0}","duration":"35.004673788s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"B7EA8021E0BE","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 0/0/new-height/0}","duration":"14.988643188s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/propose/0}","proposer":"pc1ppzgn9qpcss8lczrghrs6ckvhyt00dwvnzy8lcy","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 57C3DFC08172 ๐Ÿ‘ค pc1ppzgn9qpc ๐Ÿ’ป B7EA8021E0BE ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 57C3DFC08172 ๐Ÿ‘ค pc1ppzgn9qpc}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestConsensusInvalidVote: {pc1ppzgn9qpc 1/0/prepare/0}","vote":"{2/0/PRECOMMIT โŒ˜ 97DEEE62D2BA ๐Ÿ‘ค pc1ptgfjtjru}","time":"2023-09-06T10:25:05+03:30","message":"vote has invalid height"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"AC53250B0116","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 0/0/new-height/0}","duration":"14.965343945s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/propose/0}","proposer":"pc1pa884fp7xwhd4lpppvedlyexgtkgunx4dhyca2w","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ C769DF5664E6 ๐Ÿ‘ค pc1pa884fp7x}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 8658B2B59EE5 ๐Ÿ‘ค pc1ppykxa7mn}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1ppykxa7mn}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/propose/0}","proposer":"pc1ppykxa7mn7m4wcxp4ye979wkpv8c60tq64kpk0f","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 456A808E8DCA ๐Ÿ‘ค pc1ppykxa7mn}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPickRandomVote: {pc1ppmpvtjl6 1/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4ACD91468E66","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 0/0/new-height/0}","duration":"14.930030729s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/propose/0}","proposer":"pc1p6n94lznwqdv59up03dduwrgn95r36sgjwyssye","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/propose/0}","proposer":"pc1p0z372vx2748rwaxgl6c6q67tv0tnzs304nq38x","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousRound: {pc1pzq8326sm 1/1/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ DA7779C836BC ๐Ÿ‘ค pc1p6n94lznw ๐Ÿ’ป 4ACD91468E66 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"expired round"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FD1D90352C2E","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DC7AC8EDE7DF ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 0/0/new-height/0}","duration":"24.841354345s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/propose/0}","proposer":"pc1pa9d6awt8sl9rjm4wdkzm6se37zqt59ntg036s3","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestSetProposalFromPreviousHeight: {pc1p4w290zcx 2/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ DC7AC8EDE7DF ๐Ÿ‘ค pc1psydcuvhp ๐Ÿ’ป FD1D90352C2E ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"invalid height"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"25CB20EAAB2D","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ EEB3F2EC886C ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ EEB3F2EC886C ๐Ÿ‘ค pc1p72j32e8t ๐Ÿ’ป 25CB20EAAB2D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ FA2F79298FCA ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FA2F79298FCA ๐Ÿ‘ค pc1p7wc8x4jk ๐Ÿ’ป AE9043BBB7B7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ DBE04DC418E1 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ DBE04DC418E1 ๐Ÿ‘ค pc1p8297zs8n ๐Ÿ’ป 69C799FF00CF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 0/0/new-height/0}","duration":"44.705499747s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/propose/0}","proposer":"pc1p7jfz6kzhntdm0dekargnfs9tzvx3a8s8f8mfug","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","duration":"30m0s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","duration":"1h0m0s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ A84F0D128305 ๐Ÿ‘ค pc1p7jfz6kzh ๐Ÿ’ป E8D93963A36D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ A84F0D128305 ๐Ÿ‘ค pc1p72j32e8t}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestDuplicateProposal: {pc1p72j32e8t 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 8C26CB9D15AC ๐Ÿ‘ค pc1p7jfz6kzh ๐Ÿ’ป E8D93963A36D ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:05+03:30","message":"this round has proposal"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3A57C8C614F5","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 0/0/new-height/0}","duration":"999.999629ms","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","duration":"999.999592ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","time":"2023-09-06T10:25:05+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","time":"2023-09-06T10:25:05+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DBC2642F1786 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DBC2642F1786 ๐Ÿ‘ค pc1p5y6n7r3w ๐Ÿ’ป 3A57C8C614F5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 6C19837B4465 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6C19837B4465 ๐Ÿ‘ค pc1puy6afrlz ๐Ÿ’ป E96822E6DC08 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","duration":"999.999688ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 1/0/new-height/0}","duration":"999.999808ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8CAAE6A1B953","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 0/0/new-height/0}","duration":"14.570268691s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/propose/0}","proposer":"pc1p7awh06j0aj8llkthkhp4pe3tkk0fss78x32l88","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ CC31B96E3945 ๐Ÿ‘ค pc1p7awh06j0 ๐Ÿ’ป 8CAAE6A1B953 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ CC31B96E3945 ๐Ÿ‘ค pc1p7awh06j0}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/32767/PREPARE โŒ˜ 6DB18A14CF0A ๐Ÿ‘ค pc1pcp8hte7z}","time":"2023-09-06T10:25:05+03:30","message":"vote round number exceeding the round limit"} -{"level":"trace","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/32767/PRECOMMIT โŒ˜ 42E57CAAE229 ๐Ÿ‘ค pc1pcp8hte7z}","time":"2023-09-06T10:25:05+03:30","message":"vote round number exceeding the round limit"} -{"level":"error","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/0/PRE-VOTE/32767/1 โŒ˜ 780798773746 ๐Ÿ‘ค pc1pcp8hte7z}","err":"invalid justification: JustInitOne, reason: invalid pre-vote justification","time":"2023-09-06T10:25:05+03:30","message":"error on adding a cp vote"} -{"level":"error","_consensus":"consX - TestVoteWithBigRound: {pc1p7awh06j0 1/0/prepare/0}","vote":"{1/0/MAIN-VOTE/32767/1 โŒ˜ D3B1148C04A4 ๐Ÿ‘ค pc1pcp8hte7z}","err":"invalid justification: JustInitOne, reason: invalid main-vote justification","time":"2023-09-06T10:25:05+03:30","message":"error on adding a cp vote"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"C904A6D27918","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 0/0/new-height/0}","duration":"14.548702942s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/propose/0}","proposer":"pc1pyclgvz7p59l70pkfv8kqp6wtcvpqdlrt59jpll","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 18C97CEDBDBB ๐Ÿ‘ค pc1pyclgvz7p ๐Ÿ’ป C904A6D27918 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 18C97CEDBDBB ๐Ÿ‘ค pc1pyclgvz7p}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestProposalWithBigRound: {pc1pyclgvz7p 1/0/prepare/0}","proposal":"{1/3 ๐Ÿ—ƒ {โŒ˜ FC0691DBB61E ๐Ÿ‘ค pc1pmaqwg46y ๐Ÿ’ป C904A6D27918 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal round number exceeding the round limit"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"09559FFB8C5B","time":"2023-09-06T10:25:05+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:05+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 5BBCE13AD29A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 5BBCE13AD29A ๐Ÿ‘ค pc1plmfw3zrt ๐Ÿ’ป 09559FFB8C5B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:05+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 0/0/new-height/0}","duration":"24.495583265s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 0/0/new-height/0}","duration":"24.495008604s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 0/0/new-height/0}","duration":"24.484602438s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 0/0/new-height/0}","duration":"24.483925717s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:05+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/propose/0}","proposer":"pc1pndswlycqu6u4449kp9a0vqt84j4lgjw05gyula","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4A290B380CC ๐Ÿ‘ค pc1pndswlycq ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:05+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:05+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:05+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/propose/1}","proposer":"pc1p9m0ch473emargzra9e2x6gvlvzyenvcpmyegxm","time":"2023-09-06T10:25:05+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:05+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:05+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:05+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:05+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 76699AFCE8CC ๐Ÿ‘ค pc1p9m0ch473 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/propose/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999629ms@ 0/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999629ms@ 0/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999592ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999592ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999808ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999808ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999688ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6hse7qkv 3/0/new-height/0}","ticker":"999.999688ms@ 1/0/new-height","time":"2023-09-06T10:25:06+03:30","message":"stale ticker"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"this round has proposal"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/propose/1}","proposer":"pc1pme5pazh4dwua7q4zje85jen9vser44030ggv5p","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/prepare/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pndswlycq}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/new-height/0}","duration":"33.241361273s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/new-height/0}","duration":"33.227494782s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/new-height/0}","duration":"33.215522532s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p9m0ch473 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1plmfw3zrt}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/precommit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 8656ADD68690 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1pme5pazh4 ๐Ÿ’ป 6BFF96F85757 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/commit/0}","hash":"8656ADD68690","time":"2023-09-06T10:25:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/new-height/0}","duration":"33.20102122s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1plmfw3zrt 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pndswlycq 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pme5pazh4 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 8656ADD68690 ๐Ÿ‘ค pc1p9m0ch473}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"FF707508CA01","time":"2023-09-06T10:25:06+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 12ABE157B56D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 12ABE157B56D ๐Ÿ‘ค pc1pw6xh73tf ๐Ÿ’ป FF707508CA01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:06+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 0/0/new-height/0}","duration":"23.146956565s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 0/0/new-height/0}","duration":"23.146596128s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:06+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 0/0/new-height/0}","duration":"23.137541701s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 0/0/new-height/0}","duration":"23.134835094s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/propose/0}","proposer":"pc1pf4lhunzghrm5gnvku7kq40zevhv78ugqm5637x","time":"2023-09-06T10:25:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:06+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/prepare/0}","time":"2023-09-06T10:25:06+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:06+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:06+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 171F232883EC ๐Ÿ‘ค pc1pf4lhunzg ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:07+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/propose/1}","proposer":"pc1plwvsy5fr5uvj2ery3c84kv7gzxngxhjq9d2n00","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:07+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/prepare/0}","hash":"E80385900B53","time":"2023-09-06T10:25:07+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/precommit/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:07+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/2 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/PREPARE โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/0}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ E80385900B53 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:07+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:pre-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:07+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:07+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/propose/2}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:07+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:07+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","time":"2023-09-06T10:25:07+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:07+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:07+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:07+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/1/cp:main-vote/2}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/propose/2}","proposer":"pc1pra2j6n7ua2n73uk7x74tdqgn2n07xnx43huyna","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"this round has proposal"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/prepare/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","duration":"31.762291044s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/new-height/0}","duration":"31.748273759s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/new-height/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pw6xh73tf}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/new-height/0}","duration":"31.718054727s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1plwvsy5fr 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pf4lhunzg}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/precommit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 39C8C13C4B50 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1pra2j6n7u ๐Ÿ’ป A5D9EB7DCFB5 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/commit/0}","hash":"39C8C13C4B50","time":"2023-09-06T10:25:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/new-height/0}","duration":"31.69613825s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/new-height/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/new-height/0}","vote":"{2/1/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1pw6xh73tf 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1pf4lhunzg 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1pra2j6n7u 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 39C8C13C4B50 ๐Ÿ‘ค pc1plwvsy5fr}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E363D00DFFC8","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 943D7DCC6F3B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 943D7DCC6F3B ๐Ÿ‘ค pc1p2xdxl8ex ๐Ÿ’ป E363D00DFFC8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 0/0/new-height/0}","duration":"21.604319744s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 0/0/new-height/0}","duration":"21.60374773s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 0/0/new-height/0}","duration":"21.595104672s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 0/0/new-height/0}","duration":"21.59467165s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:08+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/propose/0}","proposer":"pc1p80z4a4f7m2ra2mfp5j0tvnyqjdhfruahn0gg6x","time":"2023-09-06T10:25:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/0}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/0}","time":"2023-09-06T10:25:08+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/0}","time":"2023-09-06T10:25:08+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:08+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:08+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:08+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:08+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/prepare/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","duration":"30.82493979s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","duration":"30.809124811s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p2xdxl8ex}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/2}","duration":"30.684642942s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/precommit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B0533DA1A6B9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7 ๐Ÿ’ป 27EE53B1FC9B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/commit/2}","hash":"B0533DA1A6B9","time":"2023-09-06T10:25:09+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/new-height/2}","duration":"30.671017139s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p0pcpqpuk}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1p80z4a4f7 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1pznsvvn08}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1p2xdxl8ex 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1pznsvvn08 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1p0pcpqpuk 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ B0533DA1A6B9 ๐Ÿ‘ค pc1p80z4a4f7}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"4A2FB82233E9","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DC313583F8DC ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ DC313583F8DC ๐Ÿ‘ค pc1px0mhkwqe ๐Ÿ’ป 4A2FB82233E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 0/0/new-height/0}","duration":"20.545046892s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 0/0/new-height/0}","duration":"20.544653575s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 0/0/new-height/0}","duration":"20.535426834s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 0/0/new-height/0}","duration":"20.535028437s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:09+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/propose/0}","proposer":"pc1py0akmtlg9s7fhkkxjkz4qptzeqttpw8nykfnlj","time":"2023-09-06T10:25:09+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:09+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:09+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/0}","hash":"866B09282E3A","time":"2023-09-06T10:25:09+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/0}","time":"2023-09-06T10:25:09+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/0}","time":"2023-09-06T10:25:09+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:09+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:09+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/2}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:09+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/2}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:09+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/2}","b":"0 (biased)","time":"2023-09-06T10:25:09+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:09+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:10+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:10+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/prepare/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","duration":"29.623409994s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","duration":"29.607085872s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","duration":"29.506341332s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/precommit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 866B09282E3A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg ๐Ÿ’ป 909746B50CB5 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/commit/3}","hash":"866B09282E3A","time":"2023-09-06T10:25:10+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","duration":"29.489311486s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1padpmlp0l}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1p6gve369w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestCases: {pc1py0akmtlg 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1px0mhkwqe}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestCases: {pc1px0mhkwqe 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestCases: {pc1p6gve369w 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestCases: {pc1padpmlp0l 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 866B09282E3A ๐Ÿ‘ค pc1py0akmtlg}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A097A7468307","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D830CC478720 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D830CC478720 ๐Ÿ‘ค pc1phtn9sc9a ๐Ÿ’ป A097A7468307 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 0/0/new-height/0}","duration":"29.278236685s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 0/0/new-height/0}","duration":"29.27787148s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 0/0/new-height/0}","duration":"29.26937311s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 0/0/new-height/0}","duration":"29.268989075s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:10+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/propose/0}","proposer":"pc1psy5uqvjndkfxs7rmu9lfwh70dsz2hedpqf3090","time":"2023-09-06T10:25:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:10+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/0}","hash":"C7551573EF8F","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/0}","hash":"C7551573EF8F","time":"2023-09-06T10:25:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/0}","time":"2023-09-06T10:25:10+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:10+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:11+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:decide/1}","value":0,"round":1,"time":"2023-09-06T10:25:11+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","duration":"38.433313364s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:11+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","vote":"{2/0/PREPARE โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/prepare/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","duration":"38.405117427s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","duration":"38.362533536s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/precommit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ C7551573EF8F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn ๐Ÿ’ป 516178613B86 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/commit/2}","hash":"C7551573EF8F","time":"2023-09-06T10:25:11+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","duration":"38.349013836s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1pzzxhrt7w}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1psy5uqvjn}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1phtn9sc9a 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/PRECOMMIT โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1plc5a9gws}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psy5uqvjn 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1plc5a9gws 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pzzxhrt7w 2/0/new-height/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ C7551573EF8F ๐Ÿ‘ค pc1phtn9sc9a}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"E5A3934F9F6B","time":"2023-09-06T10:25:11+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D370986985BF ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D370986985BF ๐Ÿ‘ค pc1pqhed39c7 ๐Ÿ’ป E5A3934F9F6B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:11+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 0/0/new-height/0}","duration":"28.081731899s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 0/0/new-height/0}","duration":"28.081109084s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 0/0/new-height/0}","duration":"28.071558298s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 0/0/new-height/0}","duration":"28.070929057s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:11+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/propose/0}","proposer":"pc1psytzqw75lyv067xx2m3pd27dm5ev7nkjqu379a","time":"2023-09-06T10:25:11+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:11+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 042783C47428 ๐Ÿ‘ค pc1psytzqw75 ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:11+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:11+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/prepare/0}","time":"2023-09-06T10:25:11+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 042783C47428 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:11+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/propose/1}","proposer":"pc1pdawtjpce4tjtft8vrqtz90slwxan66ch4d20te","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/prepare/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pqhed39c7}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/prepare/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1psytzqw75}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/prepare/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pez84f3r8}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/precommit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 64882A6AE62F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/commit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdawtjpce 2/1/new-height/0}","duration":"37.439611531s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pqhed39c7 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/precommit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 64882A6AE62F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/commit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1psytzqw75 2/1/new-height/0}","duration":"37.421225686s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/precommit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 64882A6AE62F ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 64882A6AE62F ๐Ÿ‘ค pc1pdawtjpce ๐Ÿ’ป F83206121D54 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/commit/0}","hash":"64882A6AE62F","time":"2023-09-06T10:25:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pez84f3r8 2/1/new-height/0}","duration":"37.409683793s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"CAA72F690A01","time":"2023-09-06T10:25:12+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 8284A8BA3B2E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8284A8BA3B2E ๐Ÿ‘ค pc1pk82326dw ๐Ÿ’ป CAA72F690A01 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:12+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 0/0/new-height/0}","duration":"27.326189195s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 0/0/new-height/0}","duration":"27.325789065s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 0/0/new-height/0}","duration":"27.31680892s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 0/0/new-height/0}","duration":"27.316432601s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/propose/0}","proposer":"pc1pkzemuc2ygvj4zz5l49la0kx9f0s8ustwpykyu8","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:12+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:12+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:12+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","time":"2023-09-06T10:25:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ 4D4C93C7717E ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/propose/1}","proposer":"pc1p7ef8tv54x2r9l2rfgd9dcvdu5agpv3da5ldllv","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/prepare/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p0y3hzm0m}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/new-height/0}","duration":"36.822749221s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","duration":"36.80798452s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/new-height/0}","duration":"36.789097381s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/precommit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 9D0E83523775 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1p7ef8tv54 ๐Ÿ’ป E5808B91BDC9 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/commit/0}","hash":"9D0E83523775","time":"2023-09-06T10:25:13+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","duration":"36.774376524s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pkzemuc2y 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 9D0E83523775 ๐Ÿ‘ค pc1pk82326dw}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pk82326dw 2/1/new-height/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p7ef8tv54 2/1/new-height/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p0y3hzm0m 2/1/new-height/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkzemuc2y}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"55F5A4A83290","time":"2023-09-06T10:25:13+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ FB155E35F21A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FB155E35F21A ๐Ÿ‘ค pc1pmnrem8x4 ๐Ÿ’ป 55F5A4A83290 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:13+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 0/0/new-height/0}","duration":"26.674449801s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 0/0/new-height/0}","duration":"26.673988841s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 0/0/new-height/0}","duration":"26.665117872s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 0/0/new-height/0}","duration":"26.66467244s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:13+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/propose/0}","proposer":"pc1p857fpzl95phd455wqwl3pwtxrmk2vdfd5ukp73","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ F290F3F6CC8D ๐Ÿ‘ค pc1p857fpzl9 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/propose/1}","proposer":"pc1pdvmpwyz05vcssym2mptse5g5qhc8fmy4aaqlwq","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:13+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0 ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:13+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ B264CD640B61 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:13+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/propose/1}","proposer":"pc1p8um3getep8cwuk4q4p6t4pf0h88l36j27efdgl","time":"2023-09-06T10:25:13+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/propose/1}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:13+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","duration":"1h30m0s","height":2,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","duration":"3h0m0s","height":2,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:13+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","time":"2023-09-06T10:25:13+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:13+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","proposal":"{2/2 ๐Ÿ—ƒ {โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"this round has proposal"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/prepare/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PREPARE โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p857fpzl9}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/new-height/0}","duration":"35.766763921s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/new-height/0}","duration":"35.751130556s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/new-height/0}","duration":"35.730074932s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pmnrem8x4}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/precommit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 44A7DB7781E7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1p8um3gete ๐Ÿ’ป 0F9036B11DD7 ๐Ÿ“จ 1}","round":2,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/commit/0}","hash":"44A7DB7781E7","time":"2023-09-06T10:25:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/new-height/0}","duration":"35.710256866s","height":2,"round":2,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p8um3gete 2/2/new-height/0}","vote":"{2/2/PRECOMMIT โŒ˜ 44A7DB7781E7 ๐Ÿ‘ค pc1pdvmpwyz0}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pmnrem8x4 2/2/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p857fpzl9 2/2/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pdvmpwyz0 2/2/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p8um3gete}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"ECCA7C232910","time":"2023-09-06T10:25:14+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ C734A8692EE4 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ C734A8692EE4 ๐Ÿ‘ค pc1pckk6deqv ๐Ÿ’ป ECCA7C232910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 0/0/new-height/0}","duration":"25.634990557s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 0/0/new-height/0}","duration":"25.633728605s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 0/0/new-height/0}","duration":"25.62472532s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 0/0/new-height/0}","duration":"25.624349583s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:14+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/propose/0}","proposer":"pc1pr4eptf85jxcwsmjml0k54hlz7jmu7spf3afh75","time":"2023-09-06T10:25:14+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/0}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/0}","time":"2023-09-06T10:25:14+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/0}","time":"2023-09-06T10:25:14+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:14+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:14+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/1}","b":"0 (biased)","time":"2023-09-06T10:25:14+03:30","message":"cp: all main-votes are abstain"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/1}","v":"abstain","time":"2023-09-06T10:25:14+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/1}","round":1,"time":"2023-09-06T10:25:14+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/2}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","v":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:14+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:14+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:14+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/PRE-VOTE/1/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/1/2 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:decide/2}","value":0,"round":2,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/3}","b":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:pre-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","v":"0","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/cp:main-vote/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","vote":"{2/0/PREPARE โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/prepare/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","duration":"34.850575403s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pckk6deqv}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","duration":"34.840833398s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/2/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","duration":"34.784096898s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/precommit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 90C96A3B4CB7 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85 ๐Ÿ’ป 1FCC96C71409 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/commit/3}","hash":"90C96A3B4CB7","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","duration":"34.767777575s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","vote":"{2/0/PRECOMMIT โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1pr4eptf85}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p50gy76fp 2/0/new-height/3}","vote":"{2/0/MAIN-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p9d476dyx}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pckk6deqv 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pr4eptf85 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p9d476dyx 2/0/new-height/3}","vote":"{2/0/PRE-VOTE/3/0 โŒ˜ 90C96A3B4CB7 ๐Ÿ‘ค pc1p50gy76fp}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F7066E66CE37","time":"2023-09-06T10:25:15+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 919BC56A94AB ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 919BC56A94AB ๐Ÿ‘ค pc1pm0yqaz0v ๐Ÿ’ป F7066E66CE37 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 0/0/new-height/0}","duration":"24.593892645s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 0/0/new-height/0}","duration":"24.5935659s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 0/0/new-height/0}","duration":"24.585262133s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 0/0/new-height/0}","duration":"24.584894258s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:15+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/propose/0}","proposer":"pc1py7q28f9ml9fvc7d478zmdsckep2vyd3sd0akf0","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 1B0E0F6B1833 ๐Ÿ‘ค pc1py7q28f9m ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:15+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:15+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/propose/1}","proposer":"pc1pka20cpckn3cm69d6n2yhqeanhuhfk4yg7sz02r","time":"2023-09-06T10:25:15+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:15+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","time":"2023-09-06T10:25:15+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:15+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/prepare/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1py7q28f9m}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/prepare/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/prepare/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/precommit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 00A62208855E ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/commit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/new-height/0}","duration":"34.076731365s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/precommit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 00A62208855E ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/commit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/new-height/0}","duration":"34.039315201s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pm0yqaz0v}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/precommit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 00A62208855E ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 00A62208855E ๐Ÿ‘ค pc1pka20cpck ๐Ÿ’ป 03FE20E4EA79 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:15+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/commit/0}","hash":"00A62208855E","time":"2023-09-06T10:25:15+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pt3ruq3pt 2/1/new-height/0}","duration":"34.025233237s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:15+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pm0yqaz0v 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1py7q28f9m 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:15+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pka20cpck 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pt3ruq3pt}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"560915A72647","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 58EA18C1D867 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 58EA18C1D867 ๐Ÿ‘ค pc1puph7j6tm ๐Ÿ’ป 560915A72647 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 0/0/new-height/0}","duration":"23.941013744s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 0/0/new-height/0}","duration":"23.940342967s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 0/0/new-height/0}","duration":"23.930688871s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 0/0/new-height/0}","duration":"23.929910841s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/propose/0}","proposer":"pc1p2l6dyu6r82xpmqfum6cnjcaaa7gnfu26h4l3gl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 8C0AECD49F47 ๐Ÿ‘ค pc1p2l6dyu6r ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","ticker":"0s@ 2/1/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/propose/1}","proposer":"pc1p3k356rswhxqxrn5a263xvhduhgtuvln3txrg9y","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/prepare/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/prepare/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1pffm64szw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/prepare/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/precommit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 477A597FA512 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/commit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/new-height/0}","duration":"33.51205112s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p2l6dyu6r}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p3k356rsw 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1puph7j6tm}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/precommit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 477A597FA512 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/commit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/new-height/0}","duration":"33.485907491s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/precommit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 477A597FA512 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 477A597FA512 ๐Ÿ‘ค pc1p3k356rsw ๐Ÿ’ป 4A821E67D587 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/commit/0}","hash":"477A597FA512","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/new-height/0}","duration":"33.476523577s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1puph7j6tm 2/1/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p2l6dyu6r 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pffm64szw 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p3k356rsw}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7C7DC744C107","time":"2023-09-06T10:25:16+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ A9C4610386D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ A9C4610386D1 ๐Ÿ‘ค pc1prs5gglmx ๐Ÿ’ป 7C7DC744C107 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 0/0/new-height/0}","duration":"23.431241621s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 0/0/new-height/0}","duration":"23.43099566s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 0/0/new-height/0}","duration":"23.425976108s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 0/0/new-height/0}","duration":"23.425731866s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/propose/0}","proposer":"pc1p892w5t7pfl7mp042ytss72kthd6vr7vv2ke3fl","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:16+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ 742145238439 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:16+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:16+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/propose/1}","proposer":"pc1pkcs5x0eh0x58m622egldvh0hmwvfhdle3pxayt","time":"2023-09-06T10:25:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","time":"2023-09-06T10:25:16+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pa89khgtu}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/prepare/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/new-height/0}","duration":"33.034936789s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/new-height/0}","duration":"33.027404418s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1prs5gglmx}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/new-height/0}","duration":"33.018036268s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p892w5t7p 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/precommit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 853537A006A2 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1pkcs5x0eh ๐Ÿ’ป 3331B170B43F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:16+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/commit/0}","hash":"853537A006A2","time":"2023-09-06T10:25:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/new-height/0}","duration":"33.005463866s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1prs5gglmx 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pkcs5x0eh 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pa89khgtu 2/1/new-height/0}","vote":"{2/1/PREPARE โŒ˜ 853537A006A2 ๐Ÿ‘ค pc1p892w5t7p}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9B28424EF035","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ ED00676051C1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ ED00676051C1 ๐Ÿ‘ค pc1pnsal4yv2 ๐Ÿ’ป 9B28424EF035 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 0/0/new-height/0}","duration":"22.962376567s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 0/0/new-height/0}","duration":"22.962078129s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 0/0/new-height/0}","duration":"22.956236817s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 0/0/new-height/0}","duration":"22.955990539s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/propose/0}","proposer":"pc1p67apg0saqqjtg7pgcqzqqhj276n7zzllqzuc4t","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/prepare/0}","hash":"C4AB12C6226B","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/precommit/0}","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/precommit/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PRECOMMIT โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:17+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:17+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:17+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/0}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"conflicting main votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:decide/1}","value":1,"round":1,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/2}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:pre-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ C4AB12C6226B ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/propose/2}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/0/cp:main-vote/2}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/propose/2}","proposer":"pc1p4u97tsvss4gfm63cttyyxwld0m84ay0dmchj39","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/prepare/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/0/PRE-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","duration":"32.454862604s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","duration":"32.447266914s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfd0uyyhd}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p4u97tsvs}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/new-height/0}","duration":"32.402687043s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/precommit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ B250ECB49F86 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1p4u97tsvs ๐Ÿ’ป 33536118EC7F ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/commit/0}","hash":"B250ECB49F86","time":"2023-09-06T10:25:17+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/new-height/0}","duration":"32.395066265s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pnsal4yv2 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/new-height/0}","vote":"{2/0/MAIN-VOTE/2/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p67apg0sa}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1p67apg0sa 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1p4u97tsvs 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1pfd0uyyhd 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ B250ECB49F86 ๐Ÿ‘ค pc1pnsal4yv2}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"83666FD7D807","time":"2023-09-06T10:25:17+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 6D40EFA13781 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 6D40EFA13781 ๐Ÿ‘ค pc1pxlmu55xe ๐Ÿ’ป 83666FD7D807 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:17+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 0/0/new-height/0}","duration":"22.346137233s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 0/0/new-height/0}","duration":"22.345906305s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 0/0/new-height/0}","duration":"22.340789124s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 0/0/new-height/0}","duration":"22.34054224s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:17+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/propose/0}","proposer":"pc1pzgu0z5nfat6nmz5psc6kgkfvfgyv2xnrtx5qf9","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:17+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:17+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:pre-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/propose/1}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:17+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/0/cp:main-vote/1}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/propose/1}","proposer":"pc1pjwu5jr0emut8dcp30quxdurrzre24gvrgh0dw0","time":"2023-09-06T10:25:17+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:17+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AF6EDEE22FF2 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","time":"2023-09-06T10:25:17+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:17+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:17+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:17+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:17+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/prepare/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pzgu0z5nf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PREPARE โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/new-height/0}","duration":"31.959959608s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/new-height/0}","duration":"31.948498827s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestFaulty: {pc1pxlmu55xe 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/new-height/0}","duration":"31.938949236s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1p9g2qtft9}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/precommit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 5DCAE78DD400 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pjwu5jr0e ๐Ÿ’ป 0A9E4FE7DD97 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/commit/0}","hash":"5DCAE78DD400","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/new-height/0}","duration":"31.931292285s","height":2,"round":1,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestFaulty: {pc1pzgu0z5nf 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestFaulty: {pc1pjwu5jr0e 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestFaulty: {pc1p9g2qtft9 2/1/new-height/0}","vote":"{2/1/PRECOMMIT โŒ˜ 5DCAE78DD400 ๐Ÿ‘ค pc1pxlmu55xe}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"2E7355982282","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D4269C36CB1F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D4269C36CB1F ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 2E7355982282 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ F069E7F5CFF5 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ F069E7F5CFF5 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป EDD03713FE1F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 15B5F75F8406 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 15B5F75F8406 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป 2B998CC105F6 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ A80934056899 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ A80934056899 ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป C7042FD69E34 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 35D04227FC02 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 35D04227FC02 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป 976970E22944 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 8FE8D19DD900 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 8FE8D19DD900 ๐Ÿ‘ค pc1p49zffhaf ๐Ÿ’ป CE6A553DCB3E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 0/0/new-height/0}","duration":"1m11.761106951s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 0/0/new-height/0}","duration":"1m11.760802351s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","ticker":"0s@ 7/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","ticker":"0s@ 7/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 0/0/new-height/0}","duration":"1m11.743546175s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/propose/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"this round has proposal"} -{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/prepare/0}","hash":"639E7ECFA3F5","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consB - TestByzantine: {pc1p6msxcp75 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 0/0/new-height/0}","duration":"1m11.728379558s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/propose/0}","proposer":"pc1p6msxcp754r20mqsn6w9eklr5u8w28gedkhk7hw","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","duration":"30m0s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","duration":"1h0m0s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","ticker":"0s@ 7/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:pre-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:decide/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:pre-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PREPARE โŒ˜ 18D5D6F4384B ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:pre-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:decide/0}","vote":"{7/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:pre-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"warn","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","prepared":"639E7ECFA3F5","roundProposal":"18D5D6F4384B","time":"2023-09-06T10:25:18+03:30","message":"double proposal detected"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/0/0 โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/propose/1}","proposer":"pc1pfytmga8ezlznqv28gf6kugvxndfstnzl77vnvz","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","duration":"1h0m0s","height":7,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","duration":"2h0m0s","height":7,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","ticker":"0s@ 7/1/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:pre-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/propose/1}","proposer":"pc1pfytmga8ezlznqv28gf6kugvxndfstnzl77vnvz","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","duration":"1h0m0s","height":7,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","duration":"2h0m0s","height":7,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/0/cp:main-vote/1}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/propose/1}","proposer":"pc1pfytmga8ezlznqv28gf6kugvxndfstnzl77vnvz","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/propose/1}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","duration":"1h0m0s","height":7,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","duration":"2h0m0s","height":7,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","proposal":"{7/1 ๐Ÿ—ƒ {โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"this round has proposal"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/0/PREPARE โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ 639E7ECFA3F5 ๐Ÿ‘ค pc1p6msxcp75 ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"expired round"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/1/PREPARE โŒ˜ 8BF79C08257E ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","ticker":"0s@ 7/1/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:pre-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:pre-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","vote":"{7/1/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:pre-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:decide/0}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:pre-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","vote":"{7/1/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:pre-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/propose/1}","proposer":"pc1p035y2uzevu7xkdzshnhhl3yv0jp4m9zun05e7w","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/propose/1}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","duration":"1h30m0s","height":7,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","duration":"3h0m0s","height":7,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/propose/1}","proposer":"pc1p035y2uzevu7xkdzshnhhl3yv0jp4m9zun05e7w","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","duration":"1h30m0s","height":7,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","duration":"3h0m0s","height":7,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/1/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/1/cp:main-vote/1}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/propose/1}","proposer":"pc1p035y2uzevu7xkdzshnhhl3yv0jp4m9zun05e7w","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","duration":"1h30m0s","height":7,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","duration":"3h0m0s","height":7,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"this round has proposal"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","proposal":"{7/2 ๐Ÿ—ƒ {โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/prepare/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/1/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/prepare/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","vote":"{7/2/PREPARE โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1pfytmga8e}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/prepare/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/precommit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#7 โŒ˜ B09D4D0B3612 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}","round":2,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/commit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consY - TestByzantine: {pc1p49zffhaf 7/2/new-height/0}","duration":"1m21.314124568s","height":7,"round":2,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/precommit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#7 โŒ˜ B09D4D0B3612 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}","round":2,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/commit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestByzantine: {pc1p035y2uze 7/2/new-height/0}","duration":"1m21.304480238s","height":7,"round":2,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","vote":"{7/2/PRECOMMIT โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p49zffhaf}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/precommit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#7 โŒ˜ B09D4D0B3612 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ B09D4D0B3612 ๐Ÿ‘ค pc1p035y2uze ๐Ÿ’ป FE5C68F0A290 ๐Ÿ“จ 2}","round":2,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/commit/0}","hash":"B09D4D0B3612","time":"2023-09-06T10:25:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consP - TestByzantine: {pc1pfytmga8e 7/2/new-height/0}","duration":"1m21.294837504s","height":7,"round":2,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1A5163AB933F","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 0/0/new-height/0}","duration":"11.284895289s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/propose/0}","proposer":"pc1pfq7ew0qnew5r228lgmq6yz2mw37xgwxyrhuwv2","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","ticker":"0s@ 1/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestChangeProposer: {pc1prvhtnkhz 1/0/cp:pre-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1prvhtnkhz}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8E3B30161F89","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 8FA76B215348 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 8FA76B215348 ๐Ÿ‘ค pc1pek082tjd ๐Ÿ’ป 8E3B30161F89 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 0/0/new-height/0}","duration":"21.254787095s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/propose/0}","proposer":"pc1prf5v57yeck4x3tyamufzqse65rwxajv94nr8u9","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","ticker":"0s@ 2/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pfqk2dvjq}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestSetProposalAfterChangeProposer: {pc1pfqk2dvjq 2/0/cp:main-vote/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 0A7EEF3D8A70 ๐Ÿ‘ค pc1prf5v57ye ๐Ÿ’ป 35C1FC3BE860 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal set"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"960211BB8FD8","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 0/0/new-height/0}","duration":"11.235996562s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/propose/0}","proposer":"pc1p650ef8j6mmgm7mntxjuu95htp2f3lqc5rtultt","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","ticker":"0s@ 1/0/change-proposer","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:pre-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/0}","vote":"{1/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:decide/0}","vote":"{1/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:decide/0}","vote":"{1/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:decide/0}","value":1,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:pre-vote/1}","b":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for one"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:pre-vote/1}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","v":"1","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/0/cp:main-vote/1}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pwven28f3}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/propose/1}","proposer":"pc1pm7s3vje8ka0vd2vyv6xe03vd27d3ye46es027q","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p650ef8j6}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement1: {pc1pwven28f3 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pm7s3vje8}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"343ECD2912EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 9A1E12CDA02E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9A1E12CDA02E ๐Ÿ‘ค pc1pd98jgj9k ๐Ÿ’ป 343ECD2912EF ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 0/0/new-height/0}","duration":"21.171151009s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/propose/0}","proposer":"pc1p0l9ejhxp38ty69e856gcvjxsytpjn8dzp3pelc","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/0/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/propose/0}","proposer":"pc1p604xf3xw3qtqdh5rdhp9fv3lpxyqddl3uhg76t","time":"2023-09-06T10:25:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","vote":"{2/1/PREPARE โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p604xf3xw}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/0}","hash":"3D141307FAF9","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/0}","time":"2023-09-06T10:25:18+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:pre-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","vote":"{2/1/PRE-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","v":"0","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/0}","vote":"{2/1/MAIN-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:decide/0}","vote":"{2/1/MAIN-VOTE/0/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:decide/0}","value":0,"round":0,"time":"2023-09-06T10:25:18+03:30","message":"binary agreement decided"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:pre-vote/1}","b":"0","time":"2023-09-06T10:25:18+03:30","message":"cp: one main-vote for zero"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:pre-vote/1}","vote":"{2/1/PRE-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","vote":"{2/1/PRE-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","v":"0","time":"2023-09-06T10:25:18+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/cp:main-vote/1}","vote":"{2/1/MAIN-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1prhkfrjs5}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/prepare/1}","hash":"3D141307FAF9","time":"2023-09-06T10:25:18+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/MAIN-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/MAIN-VOTE/1/0 โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/PRECOMMIT โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1pd98jgj9k}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","vote":"{2/1/PRECOMMIT โŒ˜ 3D141307FAF9 ๐Ÿ‘ค pc1p0l9ejhxp}","time":"2023-09-06T10:25:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestChangeProposerAgreement0: {pc1prhkfrjs5 2/1/precommit/1}","time":"2023-09-06T10:25:18+03:30","message":"no proposal yet"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C44559EF26DA","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 0/0/new-height/0}","duration":"11.105782038s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/propose/0}","proposer":"pc1pppxmrk0jdnw6fqsk5xp9ywfdvn9pdv8zujp7zx","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 47F57A7D6E40 ๐Ÿ‘ค pc1pppxmrk0j ๐Ÿ’ป C44559EF26DA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustInitOne: {pc1pppxmrk0j 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 47F57A7D6E40 ๐Ÿ‘ค pc1pppxmrk0j}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"1F00AA9F6F8C","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 0/0/new-height/0}","duration":"11.092618931s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/propose/0}","proposer":"pc1p37alev6meveya622rc5mx0quxr9kn278chtmck","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ E19B6B34AC0B ๐Ÿ‘ค pc1p37alev6m ๐Ÿ’ป 1F00AA9F6F8C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustInitZero: {pc1p37alev6m 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ E19B6B34AC0B ๐Ÿ‘ค pc1p37alev6m}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"5A1B8855277E","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 0/0/new-height/0}","duration":"11.079045662s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/propose/0}","proposer":"pc1pnd9dtvl288u9lqm98dr0uu25psd66cuy69uwnh","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ A01086E96BCF ๐Ÿ‘ค pc1pnd9dtvl2 ๐Ÿ’ป 5A1B8855277E ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteHard: {pc1pnd9dtvl2 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ A01086E96BCF ๐Ÿ‘ค pc1pnd9dtvl2}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"347B138F74EF","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 0/0/new-height/0}","duration":"11.064304448s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/propose/0}","proposer":"pc1p42z3c9lk6se7edl6aaa6uv0e80m9r0q4fac380","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 3022F2FDD520 ๐Ÿ‘ค pc1p42z3c9lk ๐Ÿ’ป 347B138F74EF ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustPreVoteSoft: {pc1p42z3c9lk 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 3022F2FDD520 ๐Ÿ‘ค pc1p42z3c9lk}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"3B1E1F683340","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 0/0/new-height/0}","duration":"11.051147999s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/propose/0}","proposer":"pc1p00qahedfpnjjr2s73npmk55rsc02vygjev4nvf","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ FB84226A3348 ๐Ÿ‘ค pc1p00qahedf ๐Ÿ’ป 3B1E1F683340 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteNoConflict: {pc1p00qahedf 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ FB84226A3348 ๐Ÿ‘ค pc1p00qahedf}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"BCA303044378","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 0/0/new-height/0}","duration":"11.037216674s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/propose/0}","proposer":"pc1phxl2a2j2n9k9hfxlhwnt9lfsj3a4ct8jmhn858","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 7836CB6607B1 ๐Ÿ‘ค pc1phxl2a2j2 ๐Ÿ’ป BCA303044378 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestInvalidJustMainVoteConflict: {pc1phxl2a2j2 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 7836CB6607B1 ๐Ÿ‘ค pc1phxl2a2j2}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"8433BF03A2A4","time":"2023-09-06T10:25:18+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 0/0/new-height/0}","duration":"11.018711099s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/propose/0}","proposer":"pc1pezrkggc8vrhn2747djl2gr59xlprnxkxchsafr","time":"2023-09-06T10:25:18+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8}","time":"2023-09-06T10:25:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:18+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D5BC87BD3684 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ D5BC87BD3684 ๐Ÿ‘ค pc1pezrkggc8 ๐Ÿ’ป 8433BF03A2A4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/propose/0}","proposer":"pc1p264mulfrykud7svumgsxqcyegtkvtl06y2jzp4","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestNewHeightTimeout: {pc1pezrkggc8 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"98315EC02543","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 85EB17E4D4F1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 85EB17E4D4F1 ๐Ÿ‘ค pc1pw3cn9vyn ๐Ÿ’ป 98315EC02543 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 0/0/new-height/0}","duration":"20.965251664s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/propose/0}","proposer":"pc1pen482pr2q5h0m2zfpxj7rakg5u7pjp0dvyh2uq","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/new-height/0}","duration":"20.96501384s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/propose/0}","proposer":"pc1pen482pr2q5h0m2zfpxj7rakg5u7pjp0dvyh2uq","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestNewHeightEntry: {pc1pw3cn9vyn 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"32FBE57EF1B1","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ FCE1C75D4E3C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ FCE1C75D4E3C ๐Ÿ‘ค pc1pke9kkpw0 ๐Ÿ’ป 32FBE57EF1B1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 0/0/new-height/0}","duration":"20.92358853s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/propose/0}","proposer":"pc1pn6avjnt6qz8dr6wxj6vyjfgf6vqe50hjpxw5fw","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6 ๐Ÿ’ป 2B51EECC08E7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pke9kkpw0}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pccfpwrha}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/prepare/0}","hash":"AAF81964EA49","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pke9kkpw0}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pccfpwrha}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/precommit/0}","hash":"AAF81964EA49","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ AAF81964EA49 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pn6avjnt6 ๐Ÿ’ป 2B51EECC08E7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/commit/0}","hash":"AAF81964EA49","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/new-height/0}","duration":"30.895438486s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ AAF81964EA49 ๐Ÿ‘ค pc1pgw9tl9nw}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"info","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/propose/0}","proposer":"pc1pccfpwrha0twpmwnqcrnklwc32m9wkhg6xqq9mz","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/prepare/0}","duration":"30m0s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/prepare/0}","duration":"1h0m0s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestUpdateCertificate: {pc1pke9kkpw0 3/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3,4],"state_root":"B38DCE7636A4","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"{pc1p66ucr2su 0/0/new-height/0}","duration":"1.880758311s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pnqc7e24e 0/0/new-height/0}","duration":"1.880706092s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8llw4rlc 0/0/new-height/0}","duration":"1.880661725s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pdcga9ln5 0/0/new-height/0}","duration":"1.880617245s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1puh0z9k4p 0/0/new-height/0}","duration":"1.880574842s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p66ucr2su 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p66ucr2su 1/0/propose/0}","proposer":"pc1p66ucr2sukstayx45lf335wy2x2c88s3fhgc26q","time":"2023-09-06T10:25:19+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p66ucr2su 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ AF01C21B6EF7 ๐Ÿ‘ค pc1p66ucr2su ๐Ÿ’ป B38DCE7636A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pnqc7e24e 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8llw4rlc 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pdcga9ln5 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1puh0z9k4p 0/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ AF01C21B6EF7 ๐Ÿ‘ค pc1p66ucr2su}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p8llw4rlc 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/propose/0}","proposer":"pc1p66ucr2sukstayx45lf335wy2x2c88s3fhgc26q","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","height":1,"active":false,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ AF01C21B6EF7 ๐Ÿ‘ค pc1p66ucr2su}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 86B9F2E26779 ๐Ÿ‘ค pc1p7q9z8hwn}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 86B9F2E26779 ๐Ÿ‘ค pc1p7q9z8hwn}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p66ucr2su 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 1D23B9AAB028 ๐Ÿ‘ค pc1p8llw4rlc ๐Ÿ’ป B38DCE7636A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1pnqc7e24e 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 1D23B9AAB028 ๐Ÿ‘ค pc1p8llw4rlc ๐Ÿ’ป B38DCE7636A4 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p8llw4rlc 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pdcga9ln5 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1puh0z9k4p 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"C2FE06462CBB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 86EE55A78710 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 86EE55A78710 ๐Ÿ‘ค pc1p7ndju928 ๐Ÿ’ป C2FE06462CBB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 0/0/new-height/0}","duration":"20.83712757s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/propose/0}","proposer":"pc1p3qz9xmta0g0dyxn5uer5y09gfhswyq6rkag6kn","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p7ndju928}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p3qz9xmta}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1pulrzsqjy}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/prepare/0}","hash":"5014392B1467","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p7ndju928}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1p3qz9xmta}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 5014392B1467 ๐Ÿ‘ค pc1pulrzsqjy}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","hash":"5014392B1467","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"consP - TestPrecommitQueryProposal: {pc1pfr3c7wnw 2/0/precommit/0}","hash":"5014392B1467","time":"2023-09-06T10:25:19+03:30","message":"query for a decided proposal"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"F4DDDA2FB0D0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 7FFE69E9FD4C ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 7FFE69E9FD4C ๐Ÿ‘ค pc1p7uvwamjj ๐Ÿ’ป F4DDDA2FB0D0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 0/0/new-height/0}","duration":"20.775014s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/propose/0}","proposer":"pc1p2a9620j3cwysvevp5gk3k0vzfzp3sskf507kdc","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1pda2r7elc}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1p7uvwamjj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1p2a9620j3}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1pgy2047mv}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/prepare/0}","hash":"AB8638E4FD92","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"warn","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","roundProposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","prepared":"ab8638e4fd92736072149d8fb99195774f33607ec214c140067841095ef9a484","time":"2023-09-06T10:25:19+03:30","message":"double proposal detected"} -{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"warn","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","roundProposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A6F5AC776E86 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 2}}","prepared":"ab8638e4fd92736072149d8fb99195774f33607ec214c140067841095ef9a484","time":"2023-09-06T10:25:19+03:30","message":"double proposal detected"} -{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1p2a9620j3 ๐Ÿ’ป E088CCFAD7E8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestPrecommitDuplicatedProposal: {pc1pda2r7elc 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ AB8638E4FD92 ๐Ÿ‘ค pc1pda2r7elc}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"AB60D9E9542A","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 45ECF5D334D1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 45ECF5D334D1 ๐Ÿ‘ค pc1plq0kveyj ๐Ÿ’ป AB60D9E9542A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 0/0/new-height/0}","duration":"20.692750712s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/propose/0}","proposer":"pc1pmuslc9x0r5t7s59w9thpx52vax2r43v8dv4neu","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1plq0kveyj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1pmuslc9x0}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1p9epalvrg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/prepare/0}","hash":"98465BBDE9C2","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plq0kveyj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pmuslc9x0}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/precommit/0}","time":"2023-09-06T10:25:19+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/0 โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1p5uhymlss}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/cp:main-vote/0}","v":"abstain","time":"2023-09-06T10:25:19+03:30","message":"cp: no-quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrecommit: {pc1p5uhymlss 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/2 โŒ˜ 98465BBDE9C2 ๐Ÿ‘ค pc1p5uhymlss}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"6E6924E241CB","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 0/0/new-height/0}","duration":"10.667836861s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/propose/0}","proposer":"pc1p5xfpm8wndj3ant4vwgyqretjvtacnh2xp79mn7","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","ticker":"0s@ 1/0/change-proposer","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} -{"level":"debug","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestChangeProposerTimeout: {pc1plugw72zx 1/0/cp:pre-vote/0}","vote":"{1/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1plugw72zx}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4E5FDF33085E","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ E701C4DCC45A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ E701C4DCC45A ๐Ÿ‘ค pc1p4x5shjfl ๐Ÿ’ป 4E5FDF33085E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 0/0/new-height/0}","duration":"20.629320272s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/propose/0}","proposer":"pc1plrxy0hzylelped6knsvp0vk0r3jysch8y7jxj8","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/propose/0}","proposer":"pc1pedvlvv7sqag4xma8ww3nrdkc5a9s9uv53rmrp2","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestQueryProposalTimeout: {pc1pmq8ttdc4 2/1/prepare/0}","ticker":"0s@ 2/1/query-proposal","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"9C9E565C386B","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ AAE121A26E8F ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AAE121A26E8F ๐Ÿ‘ค pc1p9esmcya0 ๐Ÿ’ป 9C9E565C386B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 0/0/new-height/0}","duration":"20.599953406s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/propose/0}","proposer":"pc1p2rzctv30l5tmkla5f35822p3286ca8ljytq5ld","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p9esmcya0}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p2rzctv30}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"changing proposer started"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:pre-vote/0}","vote":"{2/0/PRE-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pncg234v3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:main-vote/0}","v":"1","time":"2023-09-06T10:25:19+03:30","message":"cp: quorum for pre-votes"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:main-vote/0}","vote":"{2/0/MAIN-VOTE/0/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1pncg234v3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"consP - TestGoToChangeProposerFromPrepare: {pc1pncg234v3 2/0/cp:decide/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ A527D966BFF0 ๐Ÿ‘ค pc1p2rzctv30 ๐Ÿ’ป D51F8C03D8AA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"30B37552D0CE","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 4BEAF570305E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 4BEAF570305E ๐Ÿ‘ค pc1pcedtut0p ๐Ÿ’ป 30B37552D0CE ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 0/0/new-height/0}","duration":"20.559392143s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/propose/0}","proposer":"pc1p3k67dl7042xdle8lm4p4skfudjuhshhzyl0m98","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/propose/0}","proposer":"pc1p7uuugffdnpjxy7942xul44lgt79q5psuhqde8c","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","duration":"1h0m0s","height":2,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","duration":"2h0m0s","height":2,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consX - TestQueryProposal: {pc1pcedtut0p 2/1/prepare/0}","ticker":"0s@ 2/1/query-proposal","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"4AD7F3393531","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 0/0/new-height/0}","duration":"10.54860863s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/propose/0}","proposer":"pc1pzwcsf3st35ak8q7zs69y7rvh0dtcldzzyxqjgm","time":"2023-09-06T10:25:19+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/propose/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 139A91188DCF ๐Ÿ‘ค pc1pzwcsf3st ๐Ÿ’ป 4AD7F3393531 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestProposeBlock: {pc1pzwcsf3st 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 139A91188DCF ๐Ÿ‘ค pc1pzwcsf3st}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"7047FD5CEDAF","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 0/0/new-height/0}","duration":"10.535683949s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/propose/0}","proposer":"pc1pjvmadvll08dx3aax3z2hls5mzy0d62u73kfqm3","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"warn","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ E064F51ED129 ๐Ÿ‘ค pc1plfafx5x4 ๐Ÿ’ป 41CAA6FA0B27 ๐Ÿ“จ 5}}","err":"invalid proposal: no signature","time":"2023-09-06T10:25:19+03:30","message":"proposal has invalid signature"} -{"level":"warn","_consensus":"consY - TestSetProposalInvalidProposer: {pc1pc8er5zgv 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ E064F51ED129 ๐Ÿ‘ค pc1plfafx5x4 ๐Ÿ’ป 41CAA6FA0B27 ๐Ÿ“จ 5}}","err":"invalid address","time":"2023-09-06T10:25:19+03:30","message":"proposal has invalid signature"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"A3AE32B968C2","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 0/0/new-height/0}","duration":"10.490014826s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/propose/0}","proposer":"pc1pxk5p8hr6wr403gcdz6n27dazuh5lj6yrhnq7c4","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/propose/0}","proposer":"pc1phelkqruqk2ass3r5ft9xd55tgat0q6gfku3jz9","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/prepare/0}","duration":"1h0m0s","height":1,"round":1,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/prepare/0}","duration":"2h0m0s","height":1,"round":1,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/propose/0}","proposer":"pc1pz3hrkjvtc6wrwq2jhpjkuwg66q8ykz9tkrj4pp","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","duration":"1h30m0s","height":1,"round":2,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","duration":"3h0m0s","height":1,"round":2,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"warn","_consensus":"consP - TestSetProposalInvalidBlock: {pc1prqvw3ejh 1/2/prepare/0}","proposal":"{1/2 ๐Ÿ—ƒ {โŒ˜ 3229EB95CB24 ๐Ÿ‘ค pc1pz3hrkjvt ๐Ÿ’ป EE68157E460E ๐Ÿ“จ 5}}","err":"invalid block: state root is not same as we expected, expected a3ae32b968c24f1d83cd2bafb02d0654b473a3af95c56807e0703e88c90a18f7, got ee68157e460e627de1f296f56d9b4a6663d633572ddc26685090a0cc8cd85b03","time":"2023-09-06T10:25:19+03:30","message":"invalid block"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"393B622416B0","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 0/0/new-height/0}","duration":"10.468138416s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/propose/0}","proposer":"pc1pjgq4lraydhx0fuzeaxx6cuvyz5z4t67j5rgpys","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"consY - TestSetProposalInvalidHeight: {pc1pqw8eyy6r 1/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ CD86C0F2AA11 ๐Ÿ‘ค pc1p0ezrvjgm ๐Ÿ’ป D486B2A11623 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:19+03:30","message":"invalid height"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"67193F9A7509","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 0/0/new-height/0}","duration":"10.455754844s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/propose/0}","proposer":"pc1plfte3340mq5ralqg4g8dyhwjf5d8ug496vedu0","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 9B64472F06C7 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"block is committed for this height"} -{"level":"info","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1plfte3340 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ 9B64472F06C7 ๐Ÿ‘ค pc1pva2zwk67}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 9140A947C45F ๐Ÿ‘ค pc1p2f69lan7 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"block is committed for this height"} -{"level":"warn","_consensus":"consP - TestSetProposalAfterCommit: {pc1pva2zwk67 1/0/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 9140A947C45F ๐Ÿ‘ค pc1p2f69lan7 ๐Ÿ’ป 67193F9A7509 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal is not for the committed block"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"228F5C1B99D7","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"trace","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 0/0/new-height/0}","duration":"10.424803126s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/new-height/0}","height":1,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/propose/0}","proposer":"pc1pyysnat76cgy732y5j7ke8ylgfkjw456p8jekxw","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","duration":"30m0s","height":1,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","duration":"1h0m0s","height":1,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pyysnat76}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pwhyty2pj}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","ticker":"0s@ 1/0/query-proposal","time":"2023-09-06T10:25:19+03:30","message":"timer expired"} -{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","proposal":"{1/0 ๐Ÿ—ƒ {โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pyysnat76 ๐Ÿ’ป 228F5C1B99D7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","vote":"{1/0/PREPARE โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pea8dr9n3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/prepare/0}","hash":"B193D86A72E7","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"consP - TestNetworkLagging: {pc1pea8dr9n3 1/0/precommit/0}","vote":"{1/0/PRECOMMIT โŒ˜ B193D86A72E7 ๐Ÿ‘ค pc1pea8dr9n3}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.20}","committers":[0,1,2,3],"state_root":"21C53187050D","time":"2023-09-06T10:25:19+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/consensus/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B1E2DC7F255A ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B1E2DC7F255A ๐Ÿ‘ค pc1pkccuyyrf ๐Ÿ’ป 21C53187050D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"trace","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 0/0/new-height/0}","duration":"20.379179245s","height":0,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:19+03:30","message":"entering new height"} -{"level":"debug","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/propose/0}","proposer":"pc1phhfuklz9kxygpcs4vhf0se5ud5tg4khnl69h7w","time":"2023-09-06T10:25:19+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","duration":"30m0s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","duration":"1h0m0s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","proposal":"{2/1 ๐Ÿ—ƒ {โŒ˜ 270BFB407AEA ๐Ÿ‘ค pc1pu6450ecl ๐Ÿ’ป 0611A33A8586 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"debug","_consensus":"consX - TestProposalNextRound: {pc1pkccuyyrf 2/0/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} diff --git a/network/logs/pactus.log b/network/logs/pactus.log deleted file mode 100644 index 58887b7f9..000000000 --- a/network/logs/pactus.log +++ /dev/null @@ -1,253 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWJbaNj9Q6FBZy49UGZYt1hQrqVR5eKyxJn9PqFe3utCXM","address":[],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:06+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:06+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:06+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/40815","/ip4/127.0.0.1/udp/40125/quic","/ip4/127.0.0.1/udp/40125/quic-v1","/ip4/127.0.0.1/udp/46562/quic-v1/webtransport/certhash/uEiAZ3RsF1l6N_3mkq37O83seX_RMfG5flHTtrowaSC--BQ/certhash/uEiAjF3Z8runPIDiEAegz-ut7xG4dD8FEU-GvY6sesyFDdA","/ip4/192.168.1.6/tcp/40815","/ip4/192.168.1.6/udp/40125/quic","/ip4/192.168.1.6/udp/40125/quic-v1","/ip4/192.168.1.6/udp/46562/quic-v1/webtransport/certhash/uEiAZ3RsF1l6N_3mkq37O83seX_RMfG5flHTtrowaSC--BQ/certhash/uEiAjF3Z8runPIDiEAegz-ut7xG4dD8FEU-GvY6sesyFDdA","/ip6/::1/tcp/42047","/ip6/::1/udp/45678/quic-v1/webtransport/certhash/uEiAZ3RsF1l6N_3mkq37O83seX_RMfG5flHTtrowaSC--BQ/certhash/uEiAjF3Z8runPIDiEAegz-ut7xG4dD8FEU-GvY6sesyFDdA","/ip6/::1/udp/47020/quic","/ip6/::1/udp/47020/quic-v1"],"time":"2023-09-06T10:25:06+03:30","message":"network started"} -{"level":"debug","_network":"{0}","topic":"consensus","time":"2023-09-06T10:25:06+03:30","message":"publishing new message"} -{"level":"debug","_network":"{0}","topic":"consensus","time":"2023-09-06T10:25:06+03:30","message":"publishing new message"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:08+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:08+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:08+03:30","message":"expanding the connections"} -yGkhg4jFtCZonwaW","address":[],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","topic":"invalid","time":"2023-09-06T10:25:06+03:30","message":"publishing new message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","address":["/ip4/127.0.0.1/tcp/0"],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:06+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","address":["/ip4/127.0.0.1/tcp/0"],"time":"2023-09-06T10:25:06+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:06+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:06+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:06+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/32827"],"time":"2023-09-06T10:25:06+03:30","message":"network started"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/34581"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -{"level":"debug","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/34581"],"id":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"connecting to new peer"} -{"level":"debug","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/32827"],"id":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"connecting to new peer"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"trace","_network":"{1}","to":"12D3KooWS4SBXYmPVBNo92tuvqHpzFTZchVsXW7vaoqe5RbgTEqN","time":"2023-09-06T10:25:07+03:30","message":"sending stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWJGCYvzukEEE6h8L2P8pQ5BzVkeEznT6qchRCPLAY59au","time":"2023-09-06T10:25:07+03:30","message":"receiving stream"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWK2sjbHAWKrxw2ZbyZPa4Q2zJAmRPME5FcQZvnmq5FbAu","address":[],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/43581","/ip4/127.0.0.1/udp/34315/quic","/ip4/127.0.0.1/udp/34315/quic-v1","/ip4/127.0.0.1/udp/40741/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","/ip4/192.168.1.6/tcp/43581","/ip4/192.168.1.6/udp/34315/quic","/ip4/192.168.1.6/udp/34315/quic-v1","/ip4/192.168.1.6/udp/40741/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","/ip6/::1/tcp/44551","/ip6/::1/udp/37268/quic","/ip6/::1/udp/37268/quic-v1","/ip6/::1/udp/48845/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:07+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/tcp/44551","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/udp/48845/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/udp/40741/quic-v1/webtransport/certhash/uEiAGsDFiBxM514CiwMmPuSgL1RxmANpAwbO8_YPAaCRzUw/certhash/uEiDW03ts_uk5ogjmHQvhKhxRND7EPRH11efUYMhl9YWhMw","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/udp/37268/quic-v1","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::/udp/37268/quic","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/tcp/43581","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/udp/34315/quic","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/0.0.0.0/udp/34315/quic-v1","time":"2023-09-06T10:25:07+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","address":["/ip4/127.0.0.1/tcp/15794","/ip6/::1/tcp/15794"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/15794","/ip6/::1/tcp/15794"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} -{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/33159","/ip6/::1/tcp/44125"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWCHEXjXnmpftxuQ7uYthbCw23NqqC24iKnWWUwa1rt7Nn","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{2}","addr":["/ip4/127.0.0.1/tcp/44601","/ip6/::1/tcp/38933"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","_network":"{1}","id":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} -{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} -{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"debug","_network":"{2}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} -{"level":"info","_network":"{2}","addr":["/ip4/127.0.0.1/tcp/41991","/ip6/::1/tcp/36647"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","address":["/ip4/127.0.0.1/tcp/0","/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:07+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:07+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{4}","PeerID":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:07+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:07+03:30","message":"try connecting to a bootstrap peer"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:07+03:30","message":"expanding the connections"} -{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/33567","/ip6/::1/tcp/34057"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:08+03:30","message":"check connectivity"} -{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:08+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:08+03:30","message":"expanding the connections"} -{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"debug","_network":"{4}","peers":4,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"debug","_network":"{2}","peers":2,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{2}","count":2,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{2}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"debug","_network":"{2}","peers":2,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{2}","count":2,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{2}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{2}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"debug","_network":"{1}","peers":1,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{1}","topic":"general","time":"2023-09-06T10:25:09+03:30","message":"publishing new message"} -{"level":"debug","_network":"{1}","count":1,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip4/127.0.0.1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"trace","_network":"{1}","peer":"{12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo: [/ip6/::1/tcp/15794]}","time":"2023-09-06T10:25:09+03:30","message":"already connected"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"debug","_network":"{4}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{1}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{1}","topic":"consensus","time":"2023-09-06T10:25:09+03:30","message":"publishing new message"} -{"level":"debug","_network":"{4}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{2}","from":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","received from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving new gossip message"} -{"level":"trace","_network":"{2}","to":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"debug","_network":"{2}","pid":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} -{"level":"warn","_network":"{2}","pid":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","err":"failed to dial 12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz:\n * [/ip4/127.0.0.1/tcp/44883/p2p/12D3KooWCHEXjXnmpftxuQ7uYthbCw23NqqC24iKnWWUwa1rt7Nn/p2p-circuit] error opening relay circuit: NO_RESERVATION (204)","time":"2023-09-06T10:25:09+03:30","message":"unable to connect to peer using relay"} -{"level":"trace","_network":"{4}","to":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} -{"level":"trace","_network":"{2}","to":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"debug","_network":"{2}","pid":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{3}","pid":"12D3KooWBbdGU8XkkdFShmqoaDM2NcZx5LR7sTFodRLcUHGs45jm","time":"2023-09-06T10:25:09+03:30","message":"connected to peer using relay"} -{"level":"debug","_network":"{3}","from":"12D3KooWAuonG1Ldnfe3AHykgD6cJpiCSVYpt1M7EKYhWfKkPydb","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} -{"level":"trace","_network":"{3}","to":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"debug","_network":"{3}","pid":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} -{"level":"warn","_network":"{3}","pid":"12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1","err":"failed to dial 12D3KooWDppMRx8JypaFVTMpNmzrUGonqt8xYEBvRuctWFPMCUx1:\n * [/ip4/127.0.0.1/tcp/44883/p2p/12D3KooWCHEXjXnmpftxuQ7uYthbCw23NqqC24iKnWWUwa1rt7Nn/p2p-circuit] error opening relay circuit: NO_RESERVATION (204)","time":"2023-09-06T10:25:09+03:30","message":"unable to connect to peer using relay"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/tcp/44125","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/33159","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWH9PWcJNgpRoqMA3C2bg2YDvCHdS8mutE2pSa7uS78Loo","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"trace","_network":"{3}","to":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"debug","_network":"{3}","pid":"12D3KooWC6mFx74zeDauXKF5EyrqQMuXrKkGxTdNkfo1nE1UMaqz","err":"connection failed","time":"2023-09-06T10:25:09+03:30","message":"unable to open direct stream"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","address":["/ip4/127.0.0.1/tcp/17548"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/17548"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","address":["/ip4/127.0.0.1/tcp/0"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","peer":"{12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT: [/ip4/127.0.0.1/tcp/17548]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/39831"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","address":["/ip4/127.0.0.1/udp/19119/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/udp/19119/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","address":["/ip4/127.0.0.1/udp/0/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","peer":"{12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U: [/ip4/127.0.0.1/udp/19119/quic]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{1}","addr":["/ip4/127.0.0.1/udp/43193/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","address":["/ip6/::1/tcp/18336"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip6/::1/tcp/18336"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","address":["/ip6/::1/tcp/0"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","peer":"{12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C: [/ip6/::1/tcp/18336]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{1}","addr":["/ip6/::1/tcp/37887"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","address":["/ip6/::1/udp/10545/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip6/::1/udp/10545/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/network/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/network/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","address":["/ip6/::1/udp/0/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:09+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":4,"time":"2023-09-06T10:25:09+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","peer":"{12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct: [/ip6/::1/udp/10545/quic]}","time":"2023-09-06T10:25:09+03:30","message":"try connecting to a bootstrap peer"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","time":"2023-09-06T10:25:09+03:30","message":"Connected to peer with peerID:"} -{"level":"debug","_network":"{1}","time":"2023-09-06T10:25:09+03:30","message":"expanding the connections"} -{"level":"info","_network":"{1}","addr":["/ip6/::1/udp/49739/quic"],"time":"2023-09-06T10:25:09+03:30","message":"network started"} -{"level":"trace","_network":"{1}","to":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"trace","_network":"{1}","to":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"trace","_network":"{1}","to":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"trace","_network":"{1}","to":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","time":"2023-09-06T10:25:09+03:30","message":"sending stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/17548","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{1}","from":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWBoUYNf3D4htXPwV1pzNzqPw5i2t1puTCbLgVV8fvcXQQ","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/tcp/18336","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/39831","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWQXSiwjN9AcMkaKzu1PrJgQLAwBYwRS8TMjaJZ19XkAuT","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/19119/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooW9uXnqaPiFPmd2hjqYEUkpGcczJSJu8Ai2VTUZqtdDENm","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{1}","from":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","time":"2023-09-06T10:25:09+03:30","message":"receiving stream"} -{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWP2GRsjekxfiie9ivrFz2VHGwKWauvd516svcPGNQ472U","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWG2cCWUS285DcwtnVzVJUM4EtMUFBZRTSPUnmvREiSJ5C","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/udp/10545/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWJpLn7WxKe7iES7uHPt1GbY7fTPytNjsiPvbvGY2XmCct","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/43193/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWMYHqZMHkDeTAvjMttXzP5fCRJ2hfXi5gDXtSKjBBkjbA","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWLnDi9E5NzdDw7tqiQwvCizrZW9tLUD7QawqfWQGfBj81","time":"2023-09-06T10:25:09+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:25:09+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/udp/49739/quic","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip6/::1/tcp/37887","time":"2023-09-06T10:25:09+03:30","message":"Notifee ListenClose event emitted"} diff --git a/node/logs/pactus.log b/node/logs/pactus.log deleted file mode 100644 index 5b8c146a9..000000000 --- a/node/logs/pactus.log +++ /dev/null @@ -1,10 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWJgMy3o8RtrMMeoM5FbU2jrQxjAzDeWa2rfFrNgjSMcmZ","address":["/ip4/0.0.0.0/tcp/21777","/ip6/::/tcp/21777"],"time":"2023-09-06T10:25:07+03:30","message":"network setup"} -{"level":"error","_network":"{0}","info":"{12D3KooWNYD4bB82YZRXv6oNyYPwc5ozabx2epv75ATV3D8VD3Mq: [/ip4/172.104.46.145/tcp/21777]}","err":"failed to dial 12D3KooWNYD4bB82YZRXv6oNyYPwc5ozabx2epv75ATV3D8VD3Mq:\n * [/ip4/172.104.46.145/tcp/21777] failed to negotiate security protocol: read tcp4 192.168.1.6:21777->172.104.46.145:21777: read: connection reset by peer","time":"2023-09-06T10:25:07+03:30","message":"error trying to connect to bootstrap node"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/21777","/ip4/192.168.1.6/tcp/21777","/ip6/::1/tcp/21777"],"time":"2023-09-06T10:25:07+03:30","message":"network started"} -ry":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/node/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/node/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} diff --git a/state/logs/pactus.log b/state/logs/pactus.log deleted file mode 100644 index e57fbb815..000000000 --- a/state/logs/pactus.log +++ /dev/null @@ -1,545 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"7FC702A1111C","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ B0B640CE867D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B0B640CE867D ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป 7FC702A1111C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ CEE70159A002 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ CEE70159A002 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป A0105AE98433 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 9ECE04790DB1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9ECE04790DB1 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป 556F9E44734E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A87B07A9CB58 ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A888829B97F1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"debug","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ CA5C343E28CA ๐Ÿต cd2fb765 {Send ๐Ÿ’ธ pc1pq4fhln9y->pc1pmg580fvf 5397267528744}","err":"invalid fee: fee is wrong, expected: 1000000, got: 3730175728","time":"2023-09-06T10:25:07+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ AF6BE7F6FB4D ๐Ÿต caeced3e {Bond ๐Ÿ” pc1plf8z2fcr->pc1p90c7e6mc 868959254637}","err":"invalid fee: fee is wrong, expected: 1000000, got: 3218714564","time":"2023-09-06T10:25:07+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 65EAB3A3A81A ๐Ÿต 663b1f90 {Sortition ๐ŸŽฏ pc1p4uwah2sv}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:25:07+03:30","message":"found invalid transaction"} -{"level":"error","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ F0D699F2D1A5 ๐Ÿต a87b07a9 {Send ๐Ÿ’ธ 000000000000->pc1p3xqurjfp 1000000000}","time":"2023-09-06T10:25:07+03:30","message":"found duplicated subsidy transaction"} -{"level":"info","_state":"{#9 โŒ˜ 791313F25C83 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 791313F25C83 ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป 2E35F4537D49 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} - 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 9ECE04790DB1 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 9ECE04790DB1 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป 556F9E44734E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 0560B7ED05BB ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 0560B7ED05BB ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A66FF9BCEC88 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ C2E561E41EAF ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ C2E561E41EAF ๐Ÿ‘ค pc1pg753mc8d ๐Ÿ’ป BC527DDAA140 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 7B2164D1C433 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7B2164D1C433 ๐Ÿ‘ค pc1p3xqurjfp ๐Ÿ’ป 79936F8FFF02 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 405661E77A47 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 405661E77A47 ๐Ÿ‘ค pc1p787e79m2 ๐Ÿ’ป AB473F3AEFAC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ A87B07A9CB58 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A87B07A9CB58 ๐Ÿ‘ค pc1p8fwkzrxk ๐Ÿ’ป A888829B97F1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"40E3D6287998","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ 72D9161EC611 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 72D9161EC611 ๐Ÿ‘ค pc1p8ehtsarj ๐Ÿ’ป 40E3D6287998 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DD08D4C0E4E0","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 677BF8A40A19 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 677BF8A40A19 ๐Ÿ‘ค pc1pfwpvhryr ๐Ÿ’ป DD08D4C0E4E0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"413CC754828F","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"1602A1DACC6D","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","height":2,"time":"2023-09-06T10:25:07+03:30","message":"unexpected block height"} -{"level":"info","_state":"{#1 โŒ˜ 0714CF81CF11 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 0714CF81CF11 ๐Ÿ‘ค pc1p5s0yn3h8 ๐Ÿ’ป 1602A1DACC6D ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:07+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:07+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:07+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"85CAC96CC248","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"245F779453CA","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0C5DB9F0B9FE","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"F8675C701282","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"39C6B995533D","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"ADE95C6BBF3E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"DCF3EE2D3E52","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ D00760DF4EBA ๐Ÿ‘ค pc1pplvdhl6e ๐Ÿ’ป DCF3EE2D3E52 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"warn","_state":"{#1 โŒ˜ D00760DF4EBA ๐Ÿ•ฃ 10.25.10}","err":"invalid block: certificate has invalid round, expected 0, got 1","time":"2023-09-06T10:25:08+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"34D608563620","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0287C88F90CD","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 09AF635CAB8F ๐Ÿ‘ค pc1p5d4t03kj ๐Ÿ’ป 0287C88F90CD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"error","_state":"{#1 โŒ˜ 09AF635CAB8F ๐Ÿ•ฃ 10.25.10}","tx":"{โŒ˜ DB88977570BD ๐Ÿต 09af635c {Send ๐Ÿ’ธ 000000000000->pc1pdkvkprqw 1000000000}","time":"2023-09-06T10:25:08+03:30","message":"found duplicated subsidy transaction"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AC13D48FD1D0","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"E5792003C21E","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ DE142D247337 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ DE142D247337 ๐Ÿ‘ค pc1pk3t7njyn ๐Ÿ’ป E5792003C21E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 26CA24A0B441 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 26CA24A0B441 ๐Ÿ‘ค pc1pv7m8ccv5 ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 26CA24A0B441 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 26CA24A0B441 ๐Ÿ‘ค pc1pv7m8ccv5 ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 26CA24A0B441 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 26CA24A0B441 ๐Ÿ‘ค pc1pv7m8ccv5 ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 4C256F980422 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 4C256F980422 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 87D09372DF60 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 79A68BD34C85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 79A68BD34C85 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 8D11497BC6F9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 79A68BD34C85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 79A68BD34C85 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 8D11497BC6F9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 79A68BD34C85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 79A68BD34C85 ๐Ÿ‘ค pc1p437dvatp ๐Ÿ’ป 8D11497BC6F9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"panic","_state":"{#2 โŒ˜ 4C256F980422 ๐Ÿ•ฃ 10.25.20}","our hash":"4c256f980422ba184f9902ed38be5f335dea31d0490a6c1e544f0e139a24f1b7","block hash":"26ca24a0b441d3d5159a0f5ba3d0b22f6a31a39d8f7fbe1d36b56a03edfdf8e0","time":"2023-09-06T10:25:08+03:30","message":"a possible fork is detected"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:08+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"146D044B15CC","time":"2023-09-06T10:25:08+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 40E47E0272D6 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 40E47E0272D6 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 146D044B15CC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 9D3AD57EE425 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 9D3AD57EE425 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป 73513DDFB6C8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ B12D6CB2B84E ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ B12D6CB2B84E ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป D06B71C454F4 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 6D071A5DF0DA ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 6D071A5DF0DA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 892819CCFF29 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 99286C69A2DE ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 99286C69A2DE ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8C4118F2ED84 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 9B21B3308785 ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป F49604C2D9C8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"debug","_state":"{#6 โŒ˜ 9B21B3308785 ๐Ÿ•ฃ 10.26.00}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ C94B7A50D917 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป C55C8077968F ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"debug","_state":"{#7 โŒ˜ C94B7A50D917 ๐Ÿ•ฃ 10.26.10}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ A7FAF6D58343 ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป C500DE7570EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"debug","_state":"{#8 โŒ˜ A7FAF6D58343 ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 918180AF0A58 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 8993B1099FA0 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"debug","_state":"{#9 โŒ˜ 918180AF0A58 ๐Ÿ•ฃ 10.26.30}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ C3AF50A2C60A ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป E6C30D285459 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"debug","_state":"{#10 โŒ˜ C3AF50A2C60A ๐Ÿ•ฃ 10.26.40}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","block":"{โŒ˜ 656B215C2130 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป AB8706D4F33A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"debug","_state":"{#11 โŒ˜ 656B215C2130 ๐Ÿ•ฃ 10.26.50}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:08+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","block":"{โŒ˜ BF5928393CAA ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 8FFFF4701D67 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#12 โŒ˜ BF5928393CAA ๐Ÿ•ฃ 10.27.00}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","block":"{โŒ˜ A8E2BBA71EBB ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 92DC39F73C0C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#13 โŒ˜ A8E2BBA71EBB ๐Ÿ•ฃ 10.27.10}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","block":"{โŒ˜ BEA753FEBC1E ๐Ÿ‘ค pc1pwyd276sj ๐Ÿ’ป A2F5E684C178 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#14 โŒ˜ BEA753FEBC1E ๐Ÿ•ฃ 10.27.20}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","block":"{โŒ˜ 7BE946CE0A60 ๐Ÿ‘ค pc1pz5hyzw6p ๐Ÿ’ป 89975C047080 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#15 โŒ˜ 7BE946CE0A60 ๐Ÿ•ฃ 10.27.30}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","block":"{โŒ˜ E437A0736FFC ๐Ÿ‘ค pc1p5jggmvez ๐Ÿ’ป 3908076A7191 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} -{"level":"info","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#16 โŒ˜ E437A0736FFC ๐Ÿ•ฃ 10.27.40}","tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"time":"2023-09-06T10:25:09+03:30","message":"new validator joined"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","block":"{โŒ˜ 222C41CF1CF2 ๐Ÿ‘ค pc1pkekg4h4k ๐Ÿ’ป 9E72FD732FF8 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} -{"level":"info","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","address":"pc1psyu0kzmy5azjja52emsll9unfcend6yp5pcw5m","power":1000000000,"tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","time":"2023-09-06T10:25:09+03:30","message":"sortition transaction broadcasted"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","committers":[4,0,1,2,3],"state_root":"1F2C165A7F24","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 418552256642 ๐Ÿต 99286c69 {Bond ๐Ÿ” pc1pkekg4h4k->pc1psyu0kzmy 1000000000}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 5BD3178622A1 ๐Ÿต e437a073 {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#17 โŒ˜ 222C41CF1CF2 ๐Ÿ•ฃ 10.27.50}","tx":"{โŒ˜ 2791D4C33E94 ๐Ÿต 222c41cf {Sortition ๐ŸŽฏ pc1psyu0kzmy}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#18 โŒ˜ E4310324EDC4 ๐Ÿ•ฃ 10.28.00}","block":"{โŒ˜ E4310324EDC4 ๐Ÿ‘ค pc1psyu0kzmy ๐Ÿ’ป 1F2C165A7F24 ๐Ÿ“จ 1}","round":3,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"AB08D399955E","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463664801s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463763575s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463815772s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"9.463893442s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464006778s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464091984s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464143516s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464212542s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.00}","delay":"59.464266942s","time":"2023-09-06T10:25:09+03:30","message":"it looks the last block had delay"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"279B01F061C1","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"B79346A09D70","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 03703C18DCD8 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 03703C18DCD8 ๐Ÿ‘ค pc1pv89qcs7c ๐Ÿ’ป B79346A09D70 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"0AA7048FB1CB","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} -{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} -{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} -{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} -{"level":"trace","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","err":"not found","time":"2023-09-06T10:25:09+03:30","message":"error on retrieving validator"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"2805C43EF460","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B4E9CA25123D ๐Ÿ‘ค pc1psh2rqw02 ๐Ÿ’ป 2805C43EF460 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#1 โŒ˜ B4E9CA25123D ๐Ÿ•ฃ 10.25.10}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ A16156B9509B ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป B18912C0C487 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#2 โŒ˜ A16156B9509B ๐Ÿ•ฃ 10.25.20}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ EB8F08773FE9 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 832DBE3211AD ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#3 โŒ˜ EB8F08773FE9 ๐Ÿ•ฃ 10.25.30}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ CBCC91120204 ๐Ÿ‘ค pc1p4w8cwgvq ๐Ÿ’ป 6AD034719FA8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#4 โŒ˜ CBCC91120204 ๐Ÿ•ฃ 10.25.40}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 424E67547698 ๐Ÿ‘ค pc1p7vjlrfhp ๐Ÿ’ป 43A32016CF57 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"debug","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","tx":"{โŒ˜ 5C187C47FBC2 ๐Ÿต 00000000 {Bond ๐Ÿ” pc1psh2rqw02->pc1p8qh4dvlz 8888000}","err":"invalid fee: fee is wrong, expected: 1000, got: 8888","time":"2023-09-06T10:25:09+03:30","message":"found invalid transaction"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#5 โŒ˜ 424E67547698 ๐Ÿ•ฃ 10.25.50}","committers":[0,1,2,3],"state_root":"3EECABB04C5A","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","_state":"{#6 โŒ˜ D43BC081ECE3 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ D43BC081ECE3 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 3EECABB04C5A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ D43BC081ECE3 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ D43BC081ECE3 ๐Ÿ‘ค pc1psth44ku3 ๐Ÿ’ป 3EECABB04C5A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.00}","committers":[0,1,2,3],"state_root":"812115CBF8EC","time":"2023-09-06T10:25:09+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ B834F123872C ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ B834F123872C ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 812115CBF8EC ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ ACF25897E8D3 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ ACF25897E8D3 ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 9D277A28533A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 72AE39F0DD85 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 72AE39F0DD85 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 7FAEB47F2699 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ EF8788248F37 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ EF8788248F37 ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป EBED2CC1C910 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:09+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ 7670F6182A39 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 7670F6182A39 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป D7ED27D3E074 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ C7740FA309AA ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ C7740FA309AA ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป 8A0F8AF93457 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#7 โŒ˜ 515D100A4241 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ 515D100A4241 ๐Ÿ‘ค pc1plnyzw96t ๐Ÿ’ป 271BE21309A7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ 4511521F870B ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ 4511521F870B ๐Ÿ‘ค pc1pam6hxhxn ๐Ÿ’ป 45663B161D65 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 71C8DE1CA931 ๐Ÿ•ฃ 10.26.30}","block":"{โŒ˜ 71C8DE1CA931 ๐Ÿ‘ค pc1p6k7tunn5 ๐Ÿ’ป 7913D72A486E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","block":"{โŒ˜ 49A6921A019C ๐Ÿ‘ค pc1p2v25992q ๐Ÿ’ป F2D1E863081C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#10 โŒ˜ 49A6921A019C ๐Ÿ•ฃ 10.26.40}","committers":[0,1,2,3],"state_root":"01920C6EDD05","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E3033770BD1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.54.50}","delay":"10.228886378s","time":"2023-09-06T10:25:10+03:30","message":"it looks the last block had delay"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"5E8A486A60EB","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"8136DA821839","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"3F5DE8B1218E","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 3505D4874A78 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 3505D4874A78 ๐Ÿ‘ค pc1pdpep8c99 ๐Ÿ’ป 3F5DE8B1218E ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"0DAB5C38990C","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"6DC84DB44354","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"D7FA92984845","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ 6F1145C0AA4A ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 6F1145C0AA4A ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป D7FA92984845 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 2D919C517555 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ 2D919C517555 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 55A927A13137 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#3 โŒ˜ 2D6AE432F588 ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 2D6AE432F588 ๐Ÿ‘ค pc1p8fqcumyc ๐Ÿ’ป C802CCE47E6D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#4 โŒ˜ 87F39D14AA72 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 87F39D14AA72 ๐Ÿ‘ค pc1phjw6dnc7 ๐Ÿ’ป 14292821E315 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#5 โŒ˜ B4B39C9840B6 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ B4B39C9840B6 ๐Ÿ‘ค pc1ps3076yg7 ๐Ÿ’ป 89120CA8ED87 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ DDA8EEEA5B28 ๐Ÿ‘ค pc1pyarj3g8y ๐Ÿ’ป 37982E3D2078 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"certificate has an unexpected committers: [0 1 2 3 4]","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"certificate has an invalid signature: 8fd5f64f7fd63000adaded00182cd8b0d86ce7dcad1637fdd3d7a6fb0e1c91a1b29d044098d28aa56b1a8b68f4303534","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"invalid block: certificate has invalid round, expected 0, got 1","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_state":"{#6 โŒ˜ DDA8EEEA5B28 ๐Ÿ•ฃ 10.26.10}","err":"certificate height is invalid (expected 6 got 7)","time":"2023-09-06T10:25:10+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/state/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/state/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.10}","committers":[0,1,2,3],"state_root":"E5E7D77E8B1A","time":"2023-09-06T10:25:10+03:30","message":"last info"} -{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#1 โŒ˜ AF9C2C7B1E5D ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ AF9C2C7B1E5D ๐Ÿ‘ค pc1p9aed565f ๐Ÿ’ป E5E7D77E8B1A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} -{"level":"info","_state":"{#2 โŒ˜ 844AD6679DD7 ๐Ÿ•ฃ 10.25.10}","block":"{โŒ˜ 844AD6679DD7 ๐Ÿ‘ค pc1pwyr0r5aq ๐Ÿ’ป 3C10C6D8745A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:10+03:30","message":"new block committed"} diff --git a/sync/logs/pactus.log b/sync/logs/pactus.log deleted file mode 100644 index 1d671818a..000000000 --- a/sync/logs/pactus.log +++ /dev/null @@ -1,412 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","bundle":"block-announce{โŒ˜ 23 7506B863C143}","time":"2023-09-06T10:25:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โŒ˜ 23 7506B863C143}","time":"2023-09-06T10:25:09+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","time":"2023-09-06T10:25:09+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:09+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","from":22,"count":23,"pid":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","time":"2023-09-06T10:25:09+03:30","message":"sending download request"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","bundle":"blocks-req{โš“ 0 22:44}","to":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","time":"2023-09-06T10:25:09+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","initiator":"QmYJ4wXpYL2c3dXdBP5MkZBJA71B7bunsaRdQu942orW5N","bundle":"block-announce{โŒ˜ 22 60E5A3A181E5}","time":"2023-09-06T10:25:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 23 โ†‘ 21}","message":"{โŒ˜ 22 60E5A3A181E5}","time":"2023-09-06T10:25:09+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 3 โ‡ˆ 23 โ†‘ 21}","height":22,"block":"{โŒ˜ 60E5A3A181E5 ๐Ÿ‘ค pc1pez5p7gd9 ๐Ÿ’ป 376911647F6A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:09+03:30","message":"committing block"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 3 โ‡ˆ 23 โ†‘ 22}","height":23,"block":"{โŒ˜ 7506B863C143 ๐Ÿ‘ค pc1pkkrlc2lr ๐Ÿ’ป 705F2C1F02E8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:09+03:30","message":"committing block"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 3 โ‡ˆ 23 โ†‘ 23}","time":"2023-09-06T10:25:09+03:30","message":"we have open session"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:09+03:30","message":"logging configured"} -{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","time":"2023-09-06T10:25:10+03:30","message":"sending BlockAnnounce ignored. We are not in the committee"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 3A3F5C32C102}","time":"2023-09-06T10:25:10+03:30","message":"broadcasting new bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:10+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 30:30}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 30:30}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 rejected 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 1:2}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 1:2}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 rejected 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 10:33}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 10:33}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 rejected 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 20:30}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 20:30}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 more-blocks 20-30}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 no-more-blocks 0-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 21:31}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 21:31}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 more-blocks 21-31}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 synced 31-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","bundle":"blocks-req{โš“ 40 131:131}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 40 131:131}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","height":131,"time":"2023-09-06T10:25:11+03:30","message":"we don't have block at this height"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 40 synced 130-0}","to":"QmWuaj5eupHBFfE1EJyTSu1uVyZ8hiTqBmsbxgyDmu4s4K","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","bundle":"blocks-req{โš“ 97 1:2}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 97 1:2}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 97 more-blocks 1-2}","to":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 97 no-more-blocks 0-0}","to":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","initiator":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","bundle":"blocks-req{โš“ 5 100:204}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 5 100:204}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksRequest message"} -{"level":"warn","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","message":"{โš“ 5 100:204}","pid":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"we are busy"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 31}","bundle":"blocks-res{โš“ 5 rejected 0-0}","to":"QmaSihAKqEC3Wt67gZWAcyxsrFp1okMVbJPXKSi4qk8WdG","time":"2023-09-06T10:25:11+03:30","message":"sending bundle to a peer"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmZer2uxjxx2VbHZu9sCCn5y1jEoEXnZU7BzoPfkbLD4da","bundle":"blocks-res{โš“ 0 more-blocks 965453-965453}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 0 more-blocks 965453-965453}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksResponse message"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTZsfo99P2nRbof29ReBdVdi4pW8xo7zTq3rgvCqtiiLa","bundle":"blocks-res{โš“ 1 more-blocks 568681-568681}","time":"2023-09-06T10:25:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 1 more-blocks 568681-568681}","time":"2023-09-06T10:25:11+03:30","message":"parsing BlocksResponse message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","bundle":"blocks-res{โš“ 0 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 0 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} -{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","response":"rejected","time":"2023-09-06T10:25:12+03:30","message":"blocks request is rejected"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","session-id":0,"time":"2023-09-06T10:25:12+03:30","message":"session rejected, close session"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","bundle":"blocks-res{โš“ 1 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 1 rejected 0-0}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} -{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","response":"rejected","time":"2023-09-06T10:25:12+03:30","message":"blocks request is rejected"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","session-id":1,"time":"2023-09-06T10:25:12+03:30","message":"session rejected, close session"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmTHfvVKWRoopFXy4VGgpgJSB1aULXcxaHTWV6ajTvumpT","bundle":"blocks-res{โš“ 2 synced 22-22}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 2 synced 22-22}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 0 โ†‘ 21}","height":22,"block":"{โŒ˜ 3FE7AD059AD2 ๐Ÿ‘ค pc1p9ycvrcal ๐Ÿ’ป DA1614A43EAE ๐Ÿ“จ 5}","time":"2023-09-06T10:25:12+03:30","message":"committing block"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 0 โ†‘ 22}","session-id":2,"time":"2023-09-06T10:25:12+03:30","message":"peer informed us we are synced. close session"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:12+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmeLc2sTQeD4NVeroqviHh6grABsKB15jWQQ1VbfEaywkF","bundle":"blocks-res{โš“ 0 more-blocks 55136-55136}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 0 more-blocks 55136-55136}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmeLc2sTQeD4NVeroqviHh6grABsKB15jWQQ1VbfEaywkF","bundle":"blocks-res{โš“ 1 more-blocks 363854-363854}","time":"2023-09-06T10:25:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โš“ 1 more-blocks 363854-363854}","time":"2023-09-06T10:25:12+03:30","message":"parsing BlocksResponse message"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 1 โ‡ˆ 0 โ†‘ 21}","session-id":1,"time":"2023-09-06T10:25:12+03:30","message":"peer responding us. keep session open"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"hello{test 0}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","Ack":false,"time":"2023-09-06T10:25:14+03:30","message":"Sending Hello message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"hello{test 0}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{test 0}","time":"2023-09-06T10:25:14+03:30","message":"parsing Hello message"} -{"level":"debug","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","pid":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","moniker":"test","flags":256,"time":"2023-09-06T10:25:14+03:30","message":"updating peer info"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"hello{test 100 ack}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","Ack":true,"time":"2023-09-06T10:25:14+03:30","message":"Sending Hello message"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"hello{test 100 ack}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{test 100 ack}","time":"2023-09-06T10:25:14+03:30","message":"parsing Hello message"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","moniker":"test","flags":257,"time":"2023-09-06T10:25:14+03:30","message":"updating peer info"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","time":"2023-09-06T10:25:14+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","from":0,"time":"2023-09-06T10:25:14+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","from":1,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending download request"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","bundle":"blocks-req{โš“ 0 1:23}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 0 1:23}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 0 1:23}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 more-blocks 1-11}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 more-blocks 1-11}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 100 โ†‘ 0}","message":"{โš“ 0 more-blocks 1-11}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 more-blocks 12-22}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 more-blocks 23-23}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 0 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 0}","height":1,"block":"{โŒ˜ 6DA56A768B50 ๐Ÿ‘ค pc1pjqr3sjd7 ๐Ÿ’ป 91EC164206E3 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 1}","height":2,"block":"{โŒ˜ 2E95EFD32A66 ๐Ÿ‘ค pc1pqt8enlcx ๐Ÿ’ป C9DC75DAC17E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 2}","height":3,"block":"{โŒ˜ 956C68E88333 ๐Ÿ‘ค pc1ptha69v44 ๐Ÿ’ป 9D098EB85A3A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 3}","height":4,"block":"{โŒ˜ AA031F22EF21 ๐Ÿ‘ค pc1p4r0hy5pc ๐Ÿ’ป 9FAED59CCD34 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 4}","height":5,"block":"{โŒ˜ 721205C434F3 ๐Ÿ‘ค pc1pkukgrzgc ๐Ÿ’ป B39DE963A261 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 5}","height":6,"block":"{โŒ˜ ED296BDD44AB ๐Ÿ‘ค pc1phmp68p5v ๐Ÿ’ป 4EF2E382041B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 6}","height":7,"block":"{โŒ˜ ED67C117BE48 ๐Ÿ‘ค pc1pv09h00xd ๐Ÿ’ป B84A56448103 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 7}","height":8,"block":"{โŒ˜ B55D5364A9C9 ๐Ÿ‘ค pc1pmlud4zkn ๐Ÿ’ป 650CC1B585DF ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 8}","height":9,"block":"{โŒ˜ E6B787401305 ๐Ÿ‘ค pc1per9u20nj ๐Ÿ’ป 831FEBAB92B3 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 9}","height":10,"block":"{โŒ˜ 3D748F25DEC2 ๐Ÿ‘ค pc1pke0rpxum ๐Ÿ’ป 31B96AFCC58B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 10}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 10}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 more-blocks 12-22}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 11 โ‡ˆ 100 โ†‘ 10}","message":"{โš“ 0 more-blocks 12-22}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 10}","height":11,"block":"{โŒ˜ 4C1AFA5C5CDE ๐Ÿ‘ค pc1ptfqmjqnc ๐Ÿ’ป C696AFE87EBA ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 11}","height":12,"block":"{โŒ˜ 7592E1A3EE4D ๐Ÿ‘ค pc1ptw5ul45k ๐Ÿ’ป A5EE90BB2CEB ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 12}","height":13,"block":"{โŒ˜ 94225F1259CD ๐Ÿ‘ค pc1pmpxff9um ๐Ÿ’ป 1DBC78D503F9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 13}","height":14,"block":"{โŒ˜ 3D899360DB73 ๐Ÿ‘ค pc1ppd0ljph6 ๐Ÿ’ป C99B4BC5CE44 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 14}","height":15,"block":"{โŒ˜ 7F389E2DCA05 ๐Ÿ‘ค pc1per0sxzdn ๐Ÿ’ป B96232EDA2E2 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 15}","height":16,"block":"{โŒ˜ 04E954096B22 ๐Ÿ‘ค pc1py59up5ak ๐Ÿ’ป 1A8A44FAB7D4 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 16}","height":17,"block":"{โŒ˜ 83A2E2FCC7E0 ๐Ÿ‘ค pc1pd9t5a7r0 ๐Ÿ’ป 5DD93A002DBB ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 17}","height":18,"block":"{โŒ˜ 227AC29676C0 ๐Ÿ‘ค pc1p7tkmzssw ๐Ÿ’ป 04E3A0A4668D ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 18}","height":19,"block":"{โŒ˜ 10838243DDE1 ๐Ÿ‘ค pc1p9jlc49tg ๐Ÿ’ป E777D5AFE41F ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 19}","height":20,"block":"{โŒ˜ 2984CCD0256A ๐Ÿ‘ค pc1pjuwv7r3h ๐Ÿ’ป 26CCD052DC9F ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 20}","height":21,"block":"{โŒ˜ 8DFCD38481F3 ๐Ÿ‘ค pc1phyajzd23 ๐Ÿ’ป DC33BE88A5B3 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 21}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 21}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 more-blocks 23-23}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 22 โ‡ˆ 100 โ†‘ 21}","message":"{โš“ 0 more-blocks 23-23}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 21}","height":22,"block":"{โŒ˜ 28535F9B8EC9 ๐Ÿ‘ค pc1p5kteay7u ๐Ÿ’ป 85A551A3613A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 0 no-more-blocks 0-0}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","message":"{โš“ 0 no-more-blocks 0-0}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","session-id":0,"time":"2023-09-06T10:25:14+03:30","message":"peer has no more block. close session"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","time":"2023-09-06T10:25:14+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","from":23,"time":"2023-09-06T10:25:14+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","from":24,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending download request"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","bundle":"blocks-req{โš“ 1 24:46}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 1 24:46}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 1 24:46}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 more-blocks 24-34}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 more-blocks 24-34}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 23 โ‡ˆ 100 โ†‘ 22}","message":"{โš“ 1 more-blocks 24-34}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 more-blocks 35-45}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 more-blocks 46-46}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 1 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:14+03:30","message":"sending bundle to a peer"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 22}","height":23,"block":"{โŒ˜ 9CF87606A516 ๐Ÿ‘ค pc1p70yfqg6h ๐Ÿ’ป E23344AE6922 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 23}","height":24,"block":"{โŒ˜ 50FD7F7EACD0 ๐Ÿ‘ค pc1p6jp748rn ๐Ÿ’ป 24D8C9111369 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 24}","height":25,"block":"{โŒ˜ 85C7216E7BCE ๐Ÿ‘ค pc1pxygrrv3t ๐Ÿ’ป 4E5D49994C1C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 25}","height":26,"block":"{โŒ˜ 183E364133BC ๐Ÿ‘ค pc1p9w6gnn6p ๐Ÿ’ป BCA6C221848B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 26}","height":27,"block":"{โŒ˜ 49E09A4C58F0 ๐Ÿ‘ค pc1p4q2hc7f3 ๐Ÿ’ป 8B9F8927361D ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 27}","height":28,"block":"{โŒ˜ 209C9ECD7ED4 ๐Ÿ‘ค pc1p3rr6azuu ๐Ÿ’ป 74D8DA80B543 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 28}","height":29,"block":"{โŒ˜ C7CFA43CD74D ๐Ÿ‘ค pc1palrlw3zy ๐Ÿ’ป 01B2F7ABEEF8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 29}","height":30,"block":"{โŒ˜ 520DA0E2C39D ๐Ÿ‘ค pc1pphgfzy9v ๐Ÿ’ป 35B33FE3B7A7 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 30}","height":31,"block":"{โŒ˜ 5FB54A286B7C ๐Ÿ‘ค pc1pjpt2nqng ๐Ÿ’ป B396A42D7A07 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 31}","height":32,"block":"{โŒ˜ AD79686CC2BB ๐Ÿ‘ค pc1p8g69k6dn ๐Ÿ’ป F37F9694BEEF ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 32}","height":33,"block":"{โŒ˜ C864D55D97DB ๐Ÿ‘ค pc1p8qffd29v ๐Ÿ’ป 97958343E00C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:14+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 33}","session-id":1,"time":"2023-09-06T10:25:14+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 33}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 more-blocks 35-45}","time":"2023-09-06T10:25:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 34 โ‡ˆ 100 โ†‘ 33}","message":"{โš“ 1 more-blocks 35-45}","time":"2023-09-06T10:25:14+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 33}","height":34,"block":"{โŒ˜ DD662AE9DE63 ๐Ÿ‘ค pc1pem6jr9gs ๐Ÿ’ป 63E47F345D5E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 34}","height":35,"block":"{โŒ˜ 50F232B6B3A9 ๐Ÿ‘ค pc1phuc92524 ๐Ÿ’ป 103794655359 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 35}","height":36,"block":"{โŒ˜ DB140C7B6592 ๐Ÿ‘ค pc1pw9lxdjlu ๐Ÿ’ป A03FF9451660 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 36}","height":37,"block":"{โŒ˜ 676610A8AD35 ๐Ÿ‘ค pc1pluycwyl2 ๐Ÿ’ป 9D39EFCD3408 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 37}","height":38,"block":"{โŒ˜ 17232430EF18 ๐Ÿ‘ค pc1p820m762q ๐Ÿ’ป 9566671B41E8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 38}","height":39,"block":"{โŒ˜ 12CF25F9A498 ๐Ÿ‘ค pc1pf5q3pag8 ๐Ÿ’ป A0E249923272 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 39}","height":40,"block":"{โŒ˜ F261C8DFA3BF ๐Ÿ‘ค pc1ptqukcdxt ๐Ÿ’ป 9C297263CA21 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 40}","height":41,"block":"{โŒ˜ DE2A86070D91 ๐Ÿ‘ค pc1px5u44szm ๐Ÿ’ป 90F1FD0A2CA9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 41}","height":42,"block":"{โŒ˜ FFF6E96A9BE7 ๐Ÿ‘ค pc1pv5w9h649 ๐Ÿ’ป 5154BCC413FD ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 42}","height":43,"block":"{โŒ˜ E654E8C419F4 ๐Ÿ‘ค pc1p6z7rcvuh ๐Ÿ’ป AE17E4FC8F8A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 43}","height":44,"block":"{โŒ˜ 816EDCB9DFB6 ๐Ÿ‘ค pc1pvp8xdeq0 ๐Ÿ’ป ED2E933D4580 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 44}","session-id":1,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 44}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 more-blocks 46-46}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 45 โ‡ˆ 100 โ†‘ 44}","message":"{โš“ 1 more-blocks 46-46}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 44}","height":45,"block":"{โŒ˜ C2A623780EE3 ๐Ÿ‘ค pc1p7jnasdz2 ๐Ÿ’ป C3FA32050721 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","session-id":1,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 1 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","message":"{โš“ 1 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","session-id":1,"time":"2023-09-06T10:25:15+03:30","message":"peer has no more block. close session"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","time":"2023-09-06T10:25:15+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","from":46,"time":"2023-09-06T10:25:15+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","from":47,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending download request"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","bundle":"blocks-req{โš“ 2 47:69}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 2 47:69}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 2 47:69}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 more-blocks 47-57}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 more-blocks 47-57}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 46 โ‡ˆ 100 โ†‘ 45}","message":"{โš“ 2 more-blocks 47-57}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 more-blocks 58-68}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 more-blocks 69-69}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 2 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 45}","height":46,"block":"{โŒ˜ 797B583B1D2C ๐Ÿ‘ค pc1pr0ldpqra ๐Ÿ’ป D16CDA027F37 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 46}","height":47,"block":"{โŒ˜ 9A56369BEE7B ๐Ÿ‘ค pc1phan659xj ๐Ÿ’ป 63D4EFE86EE8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 47}","height":48,"block":"{โŒ˜ 0D8330F5A389 ๐Ÿ‘ค pc1p0g0q5tj4 ๐Ÿ’ป F41113DE2C26 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 48}","height":49,"block":"{โŒ˜ 2F5D40649AD9 ๐Ÿ‘ค pc1pxy0fweeg ๐Ÿ’ป 8FA1B37918A9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 49}","height":50,"block":"{โŒ˜ 9EA21BC3666C ๐Ÿ‘ค pc1pksvekx2r ๐Ÿ’ป BF8BAAC01D8B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 50}","height":51,"block":"{โŒ˜ 52A04081D19F ๐Ÿ‘ค pc1pf5pd2z3x ๐Ÿ’ป 0A6645EC67D9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 51}","height":52,"block":"{โŒ˜ AB22CA0E826A ๐Ÿ‘ค pc1psr55qy8t ๐Ÿ’ป 7B66158310C4 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 52}","height":53,"block":"{โŒ˜ 74F8CD9F2255 ๐Ÿ‘ค pc1p25xldhjc ๐Ÿ’ป AD0A83B9E90E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 53}","height":54,"block":"{โŒ˜ 7610E9C42937 ๐Ÿ‘ค pc1pg7y0gsh0 ๐Ÿ’ป 91E369B022D1 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 54}","height":55,"block":"{โŒ˜ 85727D720850 ๐Ÿ‘ค pc1p2mnyc0ur ๐Ÿ’ป 2AE3233D543B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 55}","height":56,"block":"{โŒ˜ 9AF45FCEA1C4 ๐Ÿ‘ค pc1pjcuc2qpl ๐Ÿ’ป 2D4A11279F8B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 56}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 56}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 more-blocks 58-68}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 57 โ‡ˆ 100 โ†‘ 56}","message":"{โš“ 2 more-blocks 58-68}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 56}","height":57,"block":"{โŒ˜ 35A9CCA89227 ๐Ÿ‘ค pc1plqtjvdrx ๐Ÿ’ป 6F70D5FA7434 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 57}","height":58,"block":"{โŒ˜ F4D5CC4DF620 ๐Ÿ‘ค pc1pcjmjldmg ๐Ÿ’ป 2D5D34292A22 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 58}","height":59,"block":"{โŒ˜ 4F4D099C1E48 ๐Ÿ‘ค pc1pvyw4gwu4 ๐Ÿ’ป 3F1F53C45CB5 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 59}","height":60,"block":"{โŒ˜ 543C82A0C8C3 ๐Ÿ‘ค pc1p5gh5s7e9 ๐Ÿ’ป 70F1A7C5FA85 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 60}","height":61,"block":"{โŒ˜ CFEB9F1ADF84 ๐Ÿ‘ค pc1pnv3rms3c ๐Ÿ’ป 18F63078D059 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 61}","height":62,"block":"{โŒ˜ 28BBB4B1E121 ๐Ÿ‘ค pc1p9vnd63a8 ๐Ÿ’ป 62FD76A23F44 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 62}","height":63,"block":"{โŒ˜ 56FD6F20C4B9 ๐Ÿ‘ค pc1pumf842sv ๐Ÿ’ป 7E0BF2CD347A ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 63}","height":64,"block":"{โŒ˜ 2D6195EEC691 ๐Ÿ‘ค pc1pfy5dpcx6 ๐Ÿ’ป D64539A60E8D ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 64}","height":65,"block":"{โŒ˜ 30F822E26D5B ๐Ÿ‘ค pc1pfgzs0nm6 ๐Ÿ’ป 4102E06D680E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 65}","height":66,"block":"{โŒ˜ 64622C4F01D3 ๐Ÿ‘ค pc1ppjvw6mhp ๐Ÿ’ป 0A24FC60401C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 66}","height":67,"block":"{โŒ˜ 04B249DEFCE8 ๐Ÿ‘ค pc1pcq72cq3v ๐Ÿ’ป AD02C2524263 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 67}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 67}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 more-blocks 69-69}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 68 โ‡ˆ 100 โ†‘ 67}","message":"{โš“ 2 more-blocks 69-69}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 67}","height":68,"block":"{โŒ˜ 56ACF3180448 ๐Ÿ‘ค pc1p26mfc7um ๐Ÿ’ป AB7A9E28CC3F ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 2 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","message":"{โš“ 2 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","session-id":2,"time":"2023-09-06T10:25:15+03:30","message":"peer has no more block. close session"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","time":"2023-09-06T10:25:15+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","from":69,"time":"2023-09-06T10:25:15+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","from":70,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending download request"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","bundle":"blocks-req{โš“ 3 70:92}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 3 70:92}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 3 70:92}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 more-blocks 70-80}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 more-blocks 70-80}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 69 โ‡ˆ 100 โ†‘ 68}","message":"{โš“ 3 more-blocks 70-80}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 more-blocks 81-91}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 more-blocks 92-92}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 3 no-more-blocks 0-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 68}","height":69,"block":"{โŒ˜ 6FD92B36CA00 ๐Ÿ‘ค pc1phqhuv5he ๐Ÿ’ป B129EA246DBA ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 69}","height":70,"block":"{โŒ˜ 72531A11555D ๐Ÿ‘ค pc1pguzc7xrq ๐Ÿ’ป 31F33D3789E8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 70}","height":71,"block":"{โŒ˜ FDDD06964107 ๐Ÿ‘ค pc1pwf5trklr ๐Ÿ’ป 6051953F981C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 71}","height":72,"block":"{โŒ˜ D76B56C05E04 ๐Ÿ‘ค pc1paczaj7mp ๐Ÿ’ป 856D733F1068 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 72}","height":73,"block":"{โŒ˜ CE47CE9701E7 ๐Ÿ‘ค pc1plhmf2lvh ๐Ÿ’ป BA209377CAC8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 73}","height":74,"block":"{โŒ˜ 0F61A8D67693 ๐Ÿ‘ค pc1pj5xzqvcc ๐Ÿ’ป C3C5618AC955 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 74}","height":75,"block":"{โŒ˜ BCC6C7CD71FF ๐Ÿ‘ค pc1phnp8wfmd ๐Ÿ’ป 9D6184F402BB ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 75}","height":76,"block":"{โŒ˜ 64C4A3534915 ๐Ÿ‘ค pc1p03rlqj7y ๐Ÿ’ป 6D7884897B80 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 76}","height":77,"block":"{โŒ˜ 01F54DD90D5C ๐Ÿ‘ค pc1pvrzkkzae ๐Ÿ’ป F228A1507CC9 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 77}","height":78,"block":"{โŒ˜ 74DF9DBBD973 ๐Ÿ‘ค pc1pyjehynq5 ๐Ÿ’ป B64449181FAC ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 78}","height":79,"block":"{โŒ˜ 13FF963090C6 ๐Ÿ‘ค pc1pz20vt9ma ๐Ÿ’ป 0BC98747C3B6 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 79}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 79}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 more-blocks 81-91}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 80 โ‡ˆ 100 โ†‘ 79}","message":"{โš“ 3 more-blocks 81-91}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 79}","height":80,"block":"{โŒ˜ 33DC64EF400B ๐Ÿ‘ค pc1pu5dvhxek ๐Ÿ’ป 0647AD650A39 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 80}","height":81,"block":"{โŒ˜ D365D37B3068 ๐Ÿ‘ค pc1pg8wqnzx7 ๐Ÿ’ป 0016D2037622 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 81}","height":82,"block":"{โŒ˜ 9F5FE4EB6184 ๐Ÿ‘ค pc1pvvwcpukz ๐Ÿ’ป 5AA6649D507C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 82}","height":83,"block":"{โŒ˜ 6684DA8EA694 ๐Ÿ‘ค pc1pfmlc22ej ๐Ÿ’ป E485A29B72C0 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 83}","height":84,"block":"{โŒ˜ C5BB2BCF8A95 ๐Ÿ‘ค pc1pq7mk92yp ๐Ÿ’ป C53DC089D4D8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 84}","height":85,"block":"{โŒ˜ 07117351AA96 ๐Ÿ‘ค pc1pp5vr2sx4 ๐Ÿ’ป B721B741AC9E ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 85}","height":86,"block":"{โŒ˜ 4568597E1D26 ๐Ÿ‘ค pc1pjye8wf93 ๐Ÿ’ป 3C012D824446 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 86}","height":87,"block":"{โŒ˜ 26B3FEEE841D ๐Ÿ‘ค pc1p36zdw76j ๐Ÿ’ป A75BE241CF49 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 87}","height":88,"block":"{โŒ˜ B12611EF9EC7 ๐Ÿ‘ค pc1pw9un96ss ๐Ÿ’ป 026EBA7FE146 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 88}","height":89,"block":"{โŒ˜ B343086DA71F ๐Ÿ‘ค pc1p7qxurrr9 ๐Ÿ’ป D1956DAAA6EF ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 89}","height":90,"block":"{โŒ˜ F8F2E7BCDEE9 ๐Ÿ‘ค pc1p8n9gw9y5 ๐Ÿ’ป E4F233879C6C ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 90}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 90}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 more-blocks 92-92}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 91 โ‡ˆ 100 โ†‘ 90}","message":"{โš“ 3 more-blocks 92-92}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 90}","height":91,"block":"{โŒ˜ E8B20594F21B ๐Ÿ‘ค pc1pv8wn60ah ๐Ÿ’ป 57F92FC2CBFA ๐Ÿ“จ 5}","time":"2023-09-06T10:25:15+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 3 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","message":"{โš“ 3 no-more-blocks 0-0}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","session-id":3,"time":"2023-09-06T10:25:15+03:30","message":"peer has no more block. close session"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","time":"2023-09-06T10:25:15+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","from":92,"time":"2023-09-06T10:25:15+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","from":93,"count":23,"pid":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending download request"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","bundle":"blocks-req{โš“ 4 93:115}","to":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","initiator":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","bundle":"blocks-req{โš“ 4 93:115}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","message":"{โš“ 4 93:115}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksRequest message"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 4 more-blocks 93-100}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"debug","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","height":101,"time":"2023-09-06T10:25:15+03:30","message":"we don't have block at this height"} -{"level":"info","_sync":"Bob - TestSyncing: {โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 100}","bundle":"blocks-res{โš“ 4 synced 100-0}","to":"QmSTT2LUkDf2tRo3BatrR8buzuPdc1Mn1TTFxrNgLfJtvR","time":"2023-09-06T10:25:15+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 4 more-blocks 93-100}","time":"2023-09-06T10:25:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 92 โ‡ˆ 100 โ†‘ 91}","message":"{โš“ 4 more-blocks 93-100}","time":"2023-09-06T10:25:15+03:30","message":"parsing BlocksResponse message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:15+03:30","message":"logging configured"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 91}","height":92,"block":"{โŒ˜ 992CC4079AD8 ๐Ÿ‘ค pc1pgnv7y66n ๐Ÿ’ป B9ED9919A15B ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 92}","height":93,"block":"{โŒ˜ 30B6A5D54A1C ๐Ÿ‘ค pc1p363qjkan ๐Ÿ’ป 86DA7AC84B17 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 93}","height":94,"block":"{โŒ˜ 4D6C7AD0DBB7 ๐Ÿ‘ค pc1pgw890mj6 ๐Ÿ’ป 7ABD8879DE52 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 94}","height":95,"block":"{โŒ˜ 6A75219DFFBA ๐Ÿ‘ค pc1p4u4gj5ua ๐Ÿ’ป B24EFFA3D4D8 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 95}","height":96,"block":"{โŒ˜ 1E0136387E8A ๐Ÿ‘ค pc1pxu6uvqwd ๐Ÿ’ป 225103F45187 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 96}","height":97,"block":"{โŒ˜ 523C527A1CD8 ๐Ÿ‘ค pc1p7sgscsf6 ๐Ÿ’ป 0EBBEADDE300 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 97}","height":98,"block":"{โŒ˜ 74777D40A0B8 ๐Ÿ‘ค pc1ptrcll4zq ๐Ÿ’ป 9265F0380DE0 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 98}","height":99,"block":"{โŒ˜ 5EDA78E5E978 ๐Ÿ‘ค pc1przvg7m4v ๐Ÿ’ป DFF61CFBC1E0 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 99}","session-id":4,"time":"2023-09-06T10:25:16+03:30","message":"peer responding us. keep session open"} -{"level":"info","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 99}","initiator":"QmcRUwAgmesHctXz6LHcSoMtRXrj3bCruy9DUWB7roZi5V","bundle":"blocks-res{โš“ 4 synced 100-0}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 100 โ‡ˆ 100 โ†‘ 99}","message":"{โš“ 4 synced 100-0}","time":"2023-09-06T10:25:16+03:30","message":"parsing BlocksResponse message"} -{"level":"trace","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 101 โ‡ˆ 100 โ†‘ 99}","height":100,"block":"{โŒ˜ 83DDE48D5C70 ๐Ÿ‘ค pc1psl4ajm82 ๐Ÿ’ป FAD2D7EBE6C6 ๐Ÿ“จ 5}","time":"2023-09-06T10:25:16+03:30","message":"committing block"} -{"level":"debug","_sync":"Alice - TestSyncing: {โ˜ 1 โ›ƒ 101 โ‡ˆ 100 โ†‘ 100}","session-id":4,"time":"2023-09-06T10:25:16+03:30","message":"peer informed us we are synced. close session"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/2}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/2}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/2}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","message":"{1/2}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","ours":1,"peer":2,"time":"2023-09-06T10:25:16+03:30","message":"our consensus is behind of this peer"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:16+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","message":"{1/0}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","ours":1,"peer":0,"time":"2023-09-06T10:25:16+03:30","message":"our consensus is ahead of this peer"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","initiator":"QmeZr2xdiKa23TfqRWowNwx1iWcxpHNsYiyT9RrWYJB5k8","bundle":"heart-beat{1/1}","time":"2023-09-06T10:25:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:16+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 1 โ†‘ 21}","ours":1,"peer":1,"time":"2023-09-06T10:25:16+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:17+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{21/-1}","time":"2023-09-06T10:25:17+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:17+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:17+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:18+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:18+03:30","message":"broadcasting new bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:18+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmPk7jP1GbKpvNmQZyUNP9QQfj4jxsTzXszR8EUncu51P6","bundle":"hello{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"parsing Hello message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmRzjmWtYHz62HmQduaQWjq1YHoFMMXeENkxtWK4gKbKMo","bundle":"hello{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{bad-genesis 0}","time":"2023-09-06T10:25:18+03:30","message":"parsing Hello message"} -{"level":"info","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","bundle":"hello{kitty 21}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{kitty 21}","time":"2023-09-06T10:25:19+03:30","message":"parsing Hello message"} -{"level":"debug","_sync":"{โ˜ 2 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","moniker":"kitty","flags":256,"time":"2023-09-06T10:25:19+03:30","message":"updating peer info"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","bundle":"hello{Alice 21 ack}","to":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","time":"2023-09-06T10:25:19+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","to":"QmWaSh8i3zSqPaMJQ6W3wZtPLNiH6r5gMB1ynyoWpwREh1","Ack":true,"time":"2023-09-06T10:25:19+03:30","message":"Sending Hello message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","initiator":"QmQemwRyQ7gYYn9xN8oRLpqmePEjtaHbX2XvMPSeYWBb47","bundle":"hello{kitty 9 ack}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","message":"{kitty 9 ack}","time":"2023-09-06T10:25:19+03:30","message":"parsing Hello message"} -{"level":"debug","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 21 โ†‘ 21}","pid":"QmQemwRyQ7gYYn9xN8oRLpqmePEjtaHbX2XvMPSeYWBb47","moniker":"kitty","flags":1,"time":"2023-09-06T10:25:19+03:30","message":"updating peer info"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","bundle":"hello{kitty 26 ack}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{kitty 26 ack}","time":"2023-09-06T10:25:19+03:30","message":"parsing Hello message"} -{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","pid":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","moniker":"kitty","flags":1,"time":"2023-09-06T10:25:19+03:30","message":"updating peer info"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","time":"2023-09-06T10:25:19+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:19+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","from":22,"count":23,"pid":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","time":"2023-09-06T10:25:19+03:30","message":"sending download request"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 26 โ†‘ 21}","bundle":"blocks-req{โš“ 0 22:44}","to":"QmYq8SXHHuDV65zvyjRmP2qFh2AyJgk74BswrZtDrXYp6f","time":"2023-09-06T10:25:19+03:30","message":"sending bundle to a peer"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"hello{Alice 21 ack}","to":"QmfCR7chcV9PRY69ahdVARbHopvLHr8mnsyojqKpupUssB","time":"2023-09-06T10:25:19+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","to":"QmfCR7chcV9PRY69ahdVARbHopvLHr8mnsyojqKpupUssB","Ack":true,"time":"2023-09-06T10:25:19+03:30","message":"Sending Hello message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmVBr3LZmvavML3AYz6JhzuoRDKv75CVfDBtyL1kG4QvQk","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ D54BB371185A ๐Ÿ‘ค pc1phwwdf3w8 ๐Ÿ’ป 3E1DBA899740 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ D54BB371185A ๐Ÿ‘ค pc1phwwdf3w8 ๐Ÿ’ป 3E1DBA899740 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:19+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{1/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{1/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"proposal{1/0 ๐Ÿ—ƒ {โŒ˜ CEA9B9F5A1B0 ๐Ÿ‘ค pc1pav42zs08 ๐Ÿ’ป 3732C6CE7B62 ๐Ÿ“จ 5}}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQFUfvtgsQoMnjRXwrXNSBtfRBgE7fa3DzZm7eTcZB9cS","bundle":"query-proposal{1/1}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:20+03:30","message":"parsing QueryProposal message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:20+03:30","message":"logging configured"} -{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","time":"2023-09-06T10:25:21+03:30","message":"sending QueryProposal ignored. We are not in the committee"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"query-proposal{22/0}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:21+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{1/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PRECOMMIT โŒ˜ 40642598464D ๐Ÿ‘ค pc1psf2y6y5a}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmdwzJXKbRWxFNE3ZhqHMQdgdByiJvvad4YUVMDncbfLpK","bundle":"query-votes{2/1}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{2/1}","time":"2023-09-06T10:25:21+03:30","message":"parsing QueryVotes message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:21+03:30","message":"logging configured"} -{"level":"debug","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","time":"2023-09-06T10:25:22+03:30","message":"sending QueryVotes ignored. We are not in the committee"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"query-votes{22/1}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:22+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmajpxqbABwY4Ep9fPrRPV35DZwobfMn7UVsyoUBHP2kPv","bundle":"txsD71A1D8B41CC {1: โŒ˜ [D71A1D8B41CC ]}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"D71A1D8B41CC {1: โŒ˜ [D71A1D8B41CC ]}","time":"2023-09-06T10:25:22+03:30","message":"parsing Transactions message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:22+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmQX7pNYc3BARLL3CQhG792BNEo8jKoR6BCEK59oMfuTps","bundle":"vote{1/0/PRECOMMIT โŒ˜ 85A4CA606688 ๐Ÿ‘ค pc1pz5vm04hc}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{1/0/PRECOMMIT โŒ˜ 85A4CA606688 ๐Ÿ‘ค pc1pz5vm04hc}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:22+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:23+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:23+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:23+03:30","message":"broadcasting new bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:23+03:30","message":"logging configured"} -{"level":"info","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:23+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 0 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:23+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:23+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:23+03:30","message":"downloading blocks"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"vote{1/0/PREPARE โŒ˜ EDCCBE774E26 ๐Ÿ‘ค pc1pu9k8wmej}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 0 โ‡ˆ 0 โ†‘ 21}","bundle":"heart-beat{1/0}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":22,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 0 22:44}","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"blocks-res{โš“ 1 rejected 1-0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โš“ 1 rejected 1-0}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlocksResponse message"} -{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","response":"rejected","time":"2023-09-06T10:25:24+03:30","message":"blocks request is rejected"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","session-id":1,"time":"2023-09-06T10:25:24+03:30","message":"session rejected, close session"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":22,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 2 22:44}","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending bundle to a peer"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","initiator":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","bundle":"block-announce{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","message":"{โŒ˜ 45 0226B46E1E06}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","time":"2023-09-06T10:25:24+03:30","message":"start syncing with the network"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":21,"time":"2023-09-06T10:25:24+03:30","message":"downloading blocks"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":22,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} -{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 3 22:44}","err":"send error","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"error on sending bundle"} -{"level":"debug","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","from":45,"count":23,"pid":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"sending download request"} -{"level":"warn","_sync":"{โ˜ 1 โ›ƒ 2 โ‡ˆ 45 โ†‘ 21}","bundle":"blocks-req{โš“ 4 45:67}","err":"send error","to":"QmZDUfhBvDShhGqFPtLPqUjUZ4CmrCzVnASG9yYQzpB4p2","time":"2023-09-06T10:25:24+03:30","message":"error on sending bundle"} diff --git a/tests/logs/pactus.log b/tests/logs/pactus.log deleted file mode 100644 index 9351f77a4..000000000 --- a/tests/logs/pactus.log +++ /dev/null @@ -1,22677 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/tests/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/tests/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"info","_network":"{0}","id":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","address":["/ip4/127.0.0.1/tcp/0","/ip4/127.0.0.1/udp/0/quic"],"time":"2023-09-06T10:25:13+03:30","message":"network setup"} -{"level":"debug","_network":"{0}","peers":0,"time":"2023-09-06T10:25:13+03:30","message":"check connectivity"} -{"level":"debug","_network":"{0}","count":0,"threshold":3,"time":"2023-09-06T10:25:13+03:30","message":"peer count is less than minimum threshold"} -{"level":"debug","_network":"{0}","time":"2023-09-06T10:25:13+03:30","message":"expanding the connections"} -{"level":"info","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/34023","/ip4/127.0.0.1/udp/50968/quic"],"time":"2023-09-06T10:25:13+03:30","message":"network started"} -{"level":"debug","_network":"{0}","addr":["/ip4/127.0.0.1/tcp/35079","/ip4/127.0.0.1/udp/39254/quic"],"id":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"connecting to new peer"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"Connected to peer with peerID:"} -{"level":"trace","_network":"{1}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"sending stream"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"Connected to peer with peerID:"} -{"level":"trace","_network":"{1}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:14+03:30","message":"sending stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} -{"level":"trace","_network":"{1}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} -{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} -{"level":"debug","_network":"{1}","addr":["/ip4/127.0.0.1/tcp/40649","/ip4/127.0.0.1/udp/59227/quic"],"id":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"connecting to new peer"} -{"level":"debug","_network":"{1}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"receiving stream"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"Connected to peer with peerID:"} -{"level":"trace","_network":"{2}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} -{"level":"trace","_network":"{2}","to":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} -{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} -{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} -{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} -{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:15+03:30","message":"sending stream"} -{"level":"debug","_network":"{2}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} -{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} -{"level":"debug","_network":"{2}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} -{"level":"debug","_network":"{2}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} -{"level":"debug","_network":"{2}","addr":["/ip4/127.0.0.1/tcp/39157","/ip4/127.0.0.1/udp/49643/quic"],"id":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"connecting to new peer"} -{"level":"trace","_network":"{2}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"Connected to peer with peerID:"} -{"level":"trace","_network":"{3}","to":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} -{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"Connected to peer with peerID:"} -{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:16+03:30","message":"sending stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:16+03:30","message":"receiving stream"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:17+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:17+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} -{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"sending stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"receiving stream"} -{"level":"trace","_network":"{3}","to":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:17+03:30","message":"sending stream"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:23+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:29+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:29+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:33+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:33+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:39+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:39+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:43+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:49+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:49+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:53+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:59+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:59+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:03+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:09+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:09+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:13+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:19+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:23+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:29+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:29+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{3}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/50968/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/34023","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/PRE-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","time":"2023-09-06T10:25:19+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.13}","delay":"4.12744713s","time":"2023-09-06T10:25:19+03:30","message":"it looks the last block had delay"} -{"level":"info","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"parsing Proposal message"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.13}","delay":"4.13439398s","time":"2023-09-06T10:25:19+03:30","message":"it looks the last block had delay"} -{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"debug","_state":"{#0 โŒ˜ 000000000000 ๐Ÿ•ฃ 06.55.13}","delay":"4.13752721s","time":"2023-09-06T10:25:19+03:30","message":"it looks the last block had delay"} -{"level":"info","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","proposal":"{1/1 ๐Ÿ—ƒ {โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:19+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/0/MAIN-VOTE/1/1 โŒ˜ 000000000000 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/prepare/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"717.743277ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"717.731235ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"717.632739ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"715.876249ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"715.865795ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"715.791124ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"715.313026ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"715.187728ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"715.131869ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"714.376848ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"714.308766ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"714.256813ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"711.756183ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"711.744549ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PREPARE โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"711.650767ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:19+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"711.088164ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"711.031832ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"710.986171ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"710.496345ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"710.435782ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"710.389811ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"710.277071ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"710.215998ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"710.21108ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"710.162679ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"710.152426ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"710.103965ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 0}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/precommit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#1 โŒ˜ 4A0D854B6024 ๐Ÿ•ฃ 10.25.18}","block":"{โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 923B8D34EBD3 ๐Ÿ“จ 1}","round":1,"time":"2023-09-06T10:25:19+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:19+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 1/1/commit/0}","hash":"4A0D854B6024","time":"2023-09-06T10:25:19+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"702.097916ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"702.084771ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"701.987145ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","message":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:19+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","duration":"700.946335ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","duration":"700.89648ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","duration":"700.770158ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","duration":"700.727043ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","duration":"700.714866ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","duration":"700.70949ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","duration":"700.652981ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","duration":"700.65955ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","duration":"700.598481ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","vote":"{1/1/PRECOMMIT โŒ˜ 4A0D854B6024 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:19+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","time":"2023-09-06T10:25:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 0 โ‡ˆ 0 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"697.614142ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"697.555574ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"697.493771ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"697.03381ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"696.985975ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"696.941481ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{โŒ˜ 1 4A0D854B6024}","time":"2023-09-06T10:25:19+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","duration":"696.504071ms","height":1,"round":1,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","duration":"696.453769ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","duration":"696.408391ms","height":1,"round":0,"target":"new-height","time":"2023-09-06T10:25:19+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 1/1/new-height/0}","ticker":"714.376848ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 1/0/new-height/0}","ticker":"700.727043ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 1/0/new-height/0}","ticker":"700.652981ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 1/0/new-height/0}","ticker":"696.408391ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 1/0/new-height/0}","ticker":"711.744549ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 1/1/new-height/0}","ticker":"715.876249ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 1/1/new-height/0}","ticker":"702.097916ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.986171ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.986171ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"700.70949ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 1/0/new-height/0}","ticker":"717.731235ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 1/0/new-height/0}","ticker":"714.256813ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 1/1/new-height/0}","ticker":"700.770158ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"700.70949ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.389811ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"710.389811ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.791124ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 1/0/new-height/0}","ticker":"702.084771ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"711.031832ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.791124ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"711.031832ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 1/0/new-height/0}","ticker":"700.89648ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"710.435782ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"710.103965ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"710.435782ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"710.103965ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"711.650767ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"711.650767ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.131869ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"715.131869ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"696.941481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"696.941481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"697.493771ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"697.493771ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"701.987145ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"701.987145ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.865795ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.865795ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","time":"2023-09-06T10:25:20+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"710.152426ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"710.152426ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"700.946335ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.187728ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"715.187728ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","time":"2023-09-06T10:25:20+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"700.946335ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.985975ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.03381ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"715.313026ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.03381ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.985975ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"715.313026ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.614142ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"697.555574ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"710.21108ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"697.614142ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"697.555574ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/prepare/0}","ticker":"710.21108ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"696.504071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.453769ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","ticker":"696.504071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"696.453769ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","height":2,"active":true,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:20+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"710.215998ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","height":2,"active":false,"time":"2023-09-06T10:25:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"710.215998ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"717.632739ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"717.632739ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"700.65955ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","time":"2023-09-06T10:25:20+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"710.162679ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"700.65955ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"710.277071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"710.162679ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"710.277071ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"714.308766ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"700.598481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"714.308766ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"700.714866ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"700.714866ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"700.598481ms@ 1/0/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"717.743277ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","ticker":"717.743277ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/propose/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","duration":"2s","height":2,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","duration":"4s","height":2,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"710.496345ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"710.496345ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.088164ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.088164ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.756183ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","ticker":"711.756183ms@ 1/1/new-height","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","proposal":"{2/0 ๐Ÿ—ƒ {โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:20+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/prepare/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 1}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/precommit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.957646526s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.9576339s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.957537927s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.956011433s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.956002151s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.955895695s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.954078885s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.954067455s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.953990907s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.953975577s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.953931193s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.953871217s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"info","_state":"{#2 โŒ˜ 647A846DED26 ๐Ÿ•ฃ 10.25.20}","block":"{โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 34E43DA11E54 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:20+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:20+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 2/0/commit/0}","hash":"647A846DED26","time":"2023-09-06T10:25:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.953653508s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.953646089s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.953557293s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.952492191s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.952418483s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.95237136s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","duration":"1.951868829s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","duration":"1.951822532s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","duration":"1.951775568s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.951770161s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.951722049s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.951677944s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.95098544s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.950935s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.950891062s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","vote":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","duration":"1.950161878s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","duration":"1.950106995s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","duration":"1.950056748s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.949792274s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.94975093s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.949703621s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 1 โ‡ˆ 1 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.949469838s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.94942133s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.949381002s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.949088306s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.949043709s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.949004402s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.948860873s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.948828066s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.948781958s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","duration":"1.94836501s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","duration":"1.948321337s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","duration":"1.948276367s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{โŒ˜ 2 647A846DED26}","time":"2023-09-06T10:25:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","duration":"1.948155169s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","duration":"1.948110224s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","duration":"1.948063295s","height":2,"round":0,"target":"new-height","time":"2023-09-06T10:25:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:20+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PRECOMMIT โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:20+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","time":"2023-09-06T10:25:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:20+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:20+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:20+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:20+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:21+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:21+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:21+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0/PREPARE โŒ˜ 647A846DED26 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:21+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","time":"2023-09-06T10:25:21+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:21+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:21+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:21+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{2/0}","time":"2023-09-06T10:25:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:21+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{2/0}","time":"2023-09-06T10:25:21+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","ours":0,"peer":0,"time":"2023-09-06T10:25:21+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:21+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","ticker":"4s@ 1/0/change-proposer","time":"2023-09-06T10:25:21+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 2/0/new-height/0}","ticker":"1.954067455s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 2/0/new-height/0}","ticker":"1.957646526s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 2/0/new-height/0}","ticker":"1.949004402s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 2/0/new-height/0}","ticker":"1.950056748s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 2/0/new-height/0}","ticker":"1.956011433s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 2/0/new-height/0}","ticker":"1.956002151s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.950891062s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 2/0/new-height/0}","ticker":"1.95237136s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.950891062s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 2/0/new-height/0}","ticker":"1.951822532s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.951677944s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.951677944s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 2/0/new-height/0}","ticker":"1.948155169s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.94942133s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.955895695s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.955895695s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 2/0/new-height/0}","ticker":"1.953975577s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.953557293s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.953557293s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 2/0/new-height/0}","ticker":"1.948321337s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.948276367s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.948276367s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.953646089s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.953646089s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.949043709s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.949703621s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.949043709s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.949703621s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.94975093s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.94975093s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 2/0/new-height/0}","ticker":"1.953653508s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.94942133s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948110224s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948110224s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948828066s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.948828066s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950935s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","time":"2023-09-06T10:25:22+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p54qca6v4 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.951868829s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.951868829s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950935s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.952418483s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.952492191s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950106995s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.952492191s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","time":"2023-09-06T10:25:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.950106995s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.951775568s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.953990907s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.950161878s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.951722049s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.951775568s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"1.953990907s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.952418483s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.951722049s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.950161878s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.953871217s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.951770161s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.953871217s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.953931193s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.951770161s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.953931193s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.95098544s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.9576339s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"1.95098544s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.9576339s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.957537927s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.957537927s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","height":3,"active":false,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.949381002s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.949381002s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948063295s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948063295s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948781958s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.948781958s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 3/0/new-height/0}","height":3,"active":true,"time":"2023-09-06T10:25:22+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:22+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","time":"2023-09-06T10:25:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949088306s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949088306s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.94836501s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.94836501s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949792274s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"1.949792274s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 3/0/propose/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","duration":"2s","height":3,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","duration":"4s","height":3,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.954078885s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.954078885s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.949469838s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.949469838s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.948860873s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"1.948860873s@ 2/0/new-height","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","ticker":"2s@ 2/0/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 3/0/prepare/0}","proposal":"{3/0 ๐Ÿ—ƒ {โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:22+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/prepare/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 2}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/precommit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.951371318s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.951359619s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.951250368s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.947671183s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.947663892s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.947565986s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.946121585s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.94605867s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.946008431s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.945073149s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.945061802s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.944962218s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#3 โŒ˜ 2517D714A1A3 ๐Ÿ•ฃ 10.25.22}","block":"{โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 44C4BAEDFA30 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:22+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:22+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 3/0/commit/0}","hash":"2517D714A1A3","time":"2023-09-06T10:25:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.943713318s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.943700405s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.943590508s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.943483216s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.943446694s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.943415696s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.942874588s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.942781708s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.942726257s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","duration":"1.942179587s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","duration":"1.942130081s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","duration":"1.942087782s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.942050301s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.942002316s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.941955743s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","duration":"1.941336426s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","duration":"1.941291775s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","duration":"1.941244377s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.940378919s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.940325988s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.940281245s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 3/0/new-height/0}","vote":"{3/0/PRECOMMIT โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.939579886s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.939523612s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.939478185s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 2 โ‡ˆ 2 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.939011252s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.938955069s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.938905237s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","duration":"1.938749641s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","duration":"1.938699843s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","duration":"1.938655019s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.93821747s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.938161262s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.93810951s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{โŒ˜ 3 2517D714A1A3}","time":"2023-09-06T10:25:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","duration":"1.937423859s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","duration":"1.937368466s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","duration":"1.937318842s","height":3,"round":0,"target":"new-height","time":"2023-09-06T10:25:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0/PREPARE โŒ˜ 2517D714A1A3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0}","time":"2023-09-06T10:25:22+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","ours":0,"peer":0,"time":"2023-09-06T10:25:22+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","time":"2023-09-06T10:25:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0}","time":"2023-09-06T10:25:22+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{3/0}","time":"2023-09-06T10:25:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","ours":0,"peer":0,"time":"2023-09-06T10:25:22+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{3/0}","time":"2023-09-06T10:25:22+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","ours":0,"peer":0,"time":"2023-09-06T10:25:22+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","ticker":"3s@ 1/1/query-proposal","time":"2023-09-06T10:25:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 3/0/new-height/0}","ticker":"1.951371318s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 3/0/new-height/0}","ticker":"1.947663892s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 3/0/new-height/0}","ticker":"1.943713318s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 3/0/new-height/0}","ticker":"1.945073149s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 3/0/new-height/0}","ticker":"1.945061802s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 3/0/new-height/0}","ticker":"1.947565986s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 3/0/new-height/0}","ticker":"1.943700405s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 3/0/new-height/0}","ticker":"1.951359619s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 3/0/new-height/0}","ticker":"1.947671183s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 3/0/new-height/0}","ticker":"1.939478185s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 3/0/new-height/0}","ticker":"1.937318842s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941955743s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 3/0/new-height/0}","ticker":"1.942087782s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941955743s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942002316s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941244377s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.941244377s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942002316s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.942726257s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.941291775s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.942726257s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.941291775s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942781708s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.942781708s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938955069s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938955069s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.937368466s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","time":"2023-09-06T10:25:24+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.937368466s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.938905237s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.939011252s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938161262s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.938905237s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.939011252s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.938161262s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.93810951s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.93821747s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.93810951s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.93821747s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.943590508s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.939523612s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.937423859s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.943590508s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.939523612s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.944962218s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"1.937423859s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.940325988s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.944962218s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","time":"2023-09-06T10:25:24+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.940325988s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.940281245s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.939579886s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.938699843s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.940281245s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.939579886s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.938699843s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.938749641s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.938655019s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.938749641s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.938655019s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.940378919s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"1.940378919s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.942130081s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","height":4,"active":false,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.942130081s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.94605867s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.94605867s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","height":4,"active":true,"time":"2023-09-06T10:25:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.943446694s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 4/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:24+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.943446694s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.951250368s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","time":"2023-09-06T10:25:24+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.951250368s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.942179587s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.946008431s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.942179587s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.946008431s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.943483216s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.943483216s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.943415696s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.946121585s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.943415696s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"1.946121585s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 4/0/propose/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","duration":"2s","height":4,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","duration":"4s","height":4,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.941336426s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.941336426s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942050301s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942050301s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942874588s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"1.942874588s@ 3/0/new-height","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"4s@ 2/0/change-proposer","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1psgn080ye 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","proposal":"{4/0 ๐Ÿ—ƒ {โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:24+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","ticker":"2s@ 3/0/query-proposal","time":"2023-09-06T10:25:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/prepare/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 3}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/precommit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.955616576s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.955607344s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.955502219s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.95534783s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.955337857s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.955234973s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.954691985s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#4 โŒ˜ 415680A7CE0E ๐Ÿ•ฃ 10.25.24}","block":"{โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป FD39773588E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:24+03:30","message":"new block committed"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:24+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 4/0/commit/0}","hash":"415680A7CE0E","time":"2023-09-06T10:25:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.954423813s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.954420482s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.954319752s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.954107048s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.954025589s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.951591755s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.951543084s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.951506265s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.950880113s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.950814842s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","vote":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.950768423s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.95065324s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.950592954s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.950545571s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.950288237s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.950238421s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.950182562s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 3 โ‡ˆ 3 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.950053749s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.950004408s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.949951152s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.949847554s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.949792698s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.949744197s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.949492999s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.949441216s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.949394181s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","duration":"1.949366316s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","duration":"1.94931211s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","duration":"1.949264374s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.949116809s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.949065827s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","duration":"1.949051959s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.949021626s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","duration":"1.948994059s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","duration":"1.948942395s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","duration":"1.948720614s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","duration":"1.948671016s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","duration":"1.948625935s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{โŒ˜ 4 415680A7CE0E}","time":"2023-09-06T10:25:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","duration":"1.948428599s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","duration":"1.948397262s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","duration":"1.948370441s","height":4,"round":0,"target":"new-height","time":"2023-09-06T10:25:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PRECOMMIT โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:24+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:24+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:24+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:24+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:24+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:24+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:24+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:25+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:25+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:25+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0/PREPARE โŒ˜ 415680A7CE0E ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:25+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:25+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:25+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","time":"2023-09-06T10:25:25+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:25+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{4/0}","time":"2023-09-06T10:25:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:25+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{4/0}","time":"2023-09-06T10:25:25+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","ours":0,"peer":0,"time":"2023-09-06T10:25:25+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:25+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","ticker":"6s@ 1/1/change-proposer","time":"2023-09-06T10:25:25+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 4/0/new-height/0}","ticker":"1.955337857s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 4/0/new-height/0}","ticker":"1.95534783s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 4/0/new-height/0}","ticker":"1.954420482s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 4/0/new-height/0}","ticker":"1.954423813s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 4/0/new-height/0}","ticker":"1.948370441s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 4/0/new-height/0}","ticker":"1.954691985s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 4/0/new-height/0}","ticker":"1.950004408s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 4/0/new-height/0}","ticker":"1.955607344s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 4/0/new-height/0}","ticker":"1.955234973s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.950592954s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949951152s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.954107048s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.950592954s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.954107048s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 4/0/new-height/0}","ticker":"1.949394181s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.949792698s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.950238421s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.949792698s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949951152s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.950238421s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.948994059s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.94931211s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.954025589s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.948994059s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 4/0/new-height/0}","ticker":"1.949264374s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.948397262s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.954025589s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.94931211s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.948397262s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949021626s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.950814842s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.949021626s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.949065827s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.949441216s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.950814842s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.949065827s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.949441216s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.955502219s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.955502219s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.948671016s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.951543084s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.948671016s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 4/0/new-height/0}","ticker":"1.949366316s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.950768423s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.951543084s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.950768423s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.951506265s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.951506265s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.949744197s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.949744197s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.948942395s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.948942395s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.950545571s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.950545571s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","height":5,"active":false,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.948625935s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","time":"2023-09-06T10:25:26+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.948625935s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","height":5,"active":true,"time":"2023-09-06T10:25:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.949116809s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","time":"2023-09-06T10:25:26+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.950182562s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.949116809s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.950182562s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.949492999s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.948428599s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.954319752s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.949492999s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.948428599s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.954319752s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.950053749s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.950288237s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"1.950053749s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.950288237s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","time":"2023-09-06T10:25:26+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.948720614s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.950880113s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"1.948720614s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.950880113s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.955616576s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.955616576s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.951591755s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"1.951591755s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 5/0/propose/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","duration":"2s","height":5,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","duration":"4s","height":5,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1psgn080ye 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949051959s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949051959s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.95065324s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.95065324s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949847554s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"1.949847554s@ 4/0/new-height","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","proposal":"{5/0 ๐Ÿ—ƒ {โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:26+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","ticker":"2s@ 4/0/query-proposal","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","ticker":"4s@ 3/0/change-proposer","time":"2023-09-06T10:25:26+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/prepare/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 4}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/precommit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.961802695s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.961790755s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.961692288s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.960793s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.960650048s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.96056081s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p598fm5tg 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.960261577s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.960225643s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.960124081s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.957234662s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.957179376s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.957133372s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.956455151s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.956403181s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.956359242s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.956148088s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.956095159s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.956049537s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.955650125s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.955606125s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.955566478s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.955363976s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.955312159s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.95526339s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#5 โŒ˜ 9FEDB9EC2EFD ๐Ÿ•ฃ 10.25.26}","block":"{โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 5CD13EF957E9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:26+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:26+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 5/0/commit/0}","hash":"9FEDB9EC2EFD","time":"2023-09-06T10:25:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.955120389s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.95511487s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.955019268s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.954979755s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.954936385s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.954895885s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","duration":"1.953762187s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","duration":"1.953705498s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","duration":"1.953713259s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","duration":"1.953662408s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","duration":"1.953628113s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","duration":"1.953627329s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","duration":"1.95361304s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","duration":"1.953572549s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","duration":"1.953526311s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","vote":"{5/0/PRECOMMIT โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 4 โ‡ˆ 4 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.951391493s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.951343839s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.951301528s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.950750862s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.950717534s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.950684966s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{โŒ˜ 5 9FEDB9EC2EFD}","time":"2023-09-06T10:25:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","duration":"1.950291453s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","duration":"1.950260609s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","duration":"1.950233227s","height":5,"round":0,"target":"new-height","time":"2023-09-06T10:25:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:26+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:26+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:26+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:26+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:26+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:26+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:26+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:27+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:27+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:27+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0/PREPARE โŒ˜ 9FEDB9EC2EFD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:27+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:27+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:27+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:27+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:27+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","time":"2023-09-06T10:25:27+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{5/0}","time":"2023-09-06T10:25:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{5/0}","time":"2023-09-06T10:25:27+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","ours":0,"peer":0,"time":"2023-09-06T10:25:27+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1psgn080ye 5/0/new-height/0}","ticker":"1.957234662s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 5/0/new-height/0}","ticker":"1.956403181s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 5/0/new-height/0}","ticker":"1.955566478s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 5/0/new-height/0}","ticker":"1.955363976s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 5/0/new-height/0}","ticker":"1.953526311s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 5/0/new-height/0}","ticker":"1.960261577s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 5/0/new-height/0}","ticker":"1.95511487s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 5/0/new-height/0}","ticker":"1.953713259s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.954895885s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.953572549s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.954895885s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.953572549s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.960124081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 5/0/new-height/0}","ticker":"1.956049537s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.960124081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 5/0/new-height/0}","ticker":"1.955120389s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 5/0/new-height/0}","ticker":"1.950233227s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950260609s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950260609s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.961790755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.953628113s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.951343839s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.954936385s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.961790755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.954936385s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.951343839s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.955606125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.955606125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.957179376s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950717534s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.960225643s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.957179376s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.950717534s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.953628113s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.960225643s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 5/0/new-height/0}","ticker":"1.960650048s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.956359242s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","time":"2023-09-06T10:25:28+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.956359242s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.96056081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.961802695s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","height":6,"active":true,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.961802695s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.96056081s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:28+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.957133372s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.953627329s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.951301528s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.953627329s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.957133372s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.951301528s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95526339s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.956455151s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","time":"2023-09-06T10:25:28+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","time":"2023-09-06T10:25:28+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"1.956455151s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95526339s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.955019268s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.961692288s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.954979755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.955019268s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.961692288s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950750862s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95361304s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.950684966s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.95361304s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950750862s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.950684966s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.954979755s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950291453s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.955650125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.950291453s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","height":6,"active":false,"time":"2023-09-06T10:25:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.955650125s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.951391493s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.953662408s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"1.951391493s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.953762187s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.953662408s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"1.953762187s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.955312159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.955312159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.956095159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.956095159s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/propose/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","duration":"2s","height":6,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","duration":"4s","height":6,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.960793s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.960793s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.956148088s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.956148088s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.953705498s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"1.953705498s@ 5/0/new-height","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"4s@ 4/0/change-proposer","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","ticker":"2s@ 5/0/query-proposal","time":"2023-09-06T10:25:28+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 6/0/prepare/0}","proposal":"{6/0 ๐Ÿ—ƒ {โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:28+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/prepare/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PREPARE โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 5}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/precommit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.958431828s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.95842222s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.958319832s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.956741553s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.956732532s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.956629961s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.954438363s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.954426558s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.954332645s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.953687203s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.953630748s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.953567621s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.953403276s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.953341891s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.953295347s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.952869194s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.95281211s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.952762425s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.952612589s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.952561368s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.952516884s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#6 โŒ˜ 4E0854447E8D ๐Ÿ•ฃ 10.25.28}","block":"{โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 7240F86C686C ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:28+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:28+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 6/0/commit/0}","hash":"4E0854447E8D","time":"2023-09-06T10:25:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.951510418s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.951502633s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.951410808s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.950641011s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.950578616s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.95053052s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","duration":"1.950079955s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","duration":"1.950014004s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","duration":"1.949992961s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","duration":"1.949968241s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","duration":"1.949943323s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","duration":"1.949895961s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.949821558s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.949788084s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.949759877s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","duration":"1.949365222s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","duration":"1.949333638s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","duration":"1.949306347s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 6/0/new-height/0}","vote":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 5 โ‡ˆ 5 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.947770636s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.947724488s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.947674644s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.947048466s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.947002386s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.946952338s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{โŒ˜ 6 4E0854447E8D}","time":"2023-09-06T10:25:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","duration":"1.946341187s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","duration":"1.946297385s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","duration":"1.94624769s","height":6,"round":0,"target":"new-height","time":"2023-09-06T10:25:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:29+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0/PRECOMMIT โŒ˜ 4E0854447E8D ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:29+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0}","time":"2023-09-06T10:25:29+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","ours":0,"peer":0,"time":"2023-09-06T10:25:29+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0}","time":"2023-09-06T10:25:29+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","time":"2023-09-06T10:25:29+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","ours":0,"peer":0,"time":"2023-09-06T10:25:29+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{6/0}","time":"2023-09-06T10:25:29+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{6/0}","time":"2023-09-06T10:25:29+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","ours":0,"peer":0,"time":"2023-09-06T10:25:29+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 6/0/new-height/0}","ticker":"1.956732532s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 6/0/new-height/0}","ticker":"1.952869194s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 6/0/new-height/0}","ticker":"1.95842222s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 6/0/new-height/0}","ticker":"1.954438363s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 6/0/new-height/0}","ticker":"1.954332645s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 6/0/new-height/0}","ticker":"1.954426558s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 6/0/new-height/0}","ticker":"1.949968241s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 6/0/new-height/0}","ticker":"1.949895961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 6/0/new-height/0}","ticker":"1.951510418s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.950014004s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 6/0/new-height/0}","ticker":"1.953403276s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.950014004s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 6/0/new-height/0}","ticker":"1.951502633s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.952561368s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 6/0/new-height/0}","ticker":"1.946952338s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.952561368s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.953295347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.953341891s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.953295347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.953341891s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.952516884s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.952516884s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.956629961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.956629961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pafen0x39 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","height":7,"active":true,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:30+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.947674644s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.95053052s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.947674644s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.95053052s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","time":"2023-09-06T10:25:30+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.949943323s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.951410808s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949759877s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.949943323s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947048466s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.951410808s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949759877s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947048466s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.946297385s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.953630748s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","height":7,"active":false,"time":"2023-09-06T10:25:30+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.94624769s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.946297385s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.946341187s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.953630748s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.94624769s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.946341187s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949333638s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.95281211s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947770636s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.95281211s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949306347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949333638s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"1.947770636s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","time":"2023-09-06T10:25:30+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.949306347s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947724488s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","time":"2023-09-06T10:25:30+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949788084s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947724488s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949365222s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.949788084s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.952612589s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947002386s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.958319832s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.952612589s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.950578616s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.958319832s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.950578616s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.950079955s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949365222s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.947002386s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.952762425s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.950079955s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.952762425s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949821558s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.956741553s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.949821558s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.953567621s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"1.956741553s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.953567621s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.950641011s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"1.950641011s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 7/0/propose/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","duration":"2s","height":7,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","duration":"4s","height":7,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.958431828s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.958431828s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.949992961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.949992961s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.953687203s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"1.953687203s@ 6/0/new-height","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"4s@ 5/0/change-proposer","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","ticker":"2s@ 6/0/query-proposal","time":"2023-09-06T10:25:30+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","proposal":"{7/0 ๐Ÿ—ƒ {โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:30+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/prepare/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 6}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/precommit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.962210837s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.962199834s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.962110335s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.959913041s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.959866031s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.959787438s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.957900492s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.95784609s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.957796717s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.957172301s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.957161527s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.95707633s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"info","_state":"{#7 โŒ˜ AA77E6A175B3 ๐Ÿ•ฃ 10.25.30}","block":"{โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป F6993ED5D3EA ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:30+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:30+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 7/0/commit/0}","hash":"AA77E6A175B3","time":"2023-09-06T10:25:30+03:30","message":"block committed, schedule new height"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.956575722s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.956546099s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.95656058s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.956489535s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.956476789s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.956442277s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.955648285s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.955591504s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.955530622s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.955510305s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.95545831s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.955405977s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","duration":"1.954895494s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","duration":"1.954850399s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","duration":"1.954804176s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","duration":"1.954778302s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","duration":"1.954732904s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","duration":"1.954686701s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 7/0/new-height/0}","vote":"{7/0/PRECOMMIT โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:30+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.952560106s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.952510384s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.952463985s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 6 โ‡ˆ 6 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.951986697s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.951936454s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.951888159s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.951791558s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.951743896s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.951699881s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.95121065s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.951162056s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.951115261s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","duration":"1.950979209s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","duration":"1.950916966s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","duration":"1.950852123s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{โŒ˜ 7 AA77E6A175B3}","time":"2023-09-06T10:25:30+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","duration":"1.950610759s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","duration":"1.950577476s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","duration":"1.950529366s","height":7,"round":0,"target":"new-height","time":"2023-09-06T10:25:30+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:30+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:30+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:30+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:30+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:30+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:30+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:30+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:30+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:30+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:30+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:30+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:31+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:31+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:31+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0/PREPARE โŒ˜ AA77E6A175B3 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:31+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:31+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:31+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","time":"2023-09-06T10:25:31+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:31+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{7/0}","time":"2023-09-06T10:25:31+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:31+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{7/0}","time":"2023-09-06T10:25:31+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","ours":0,"peer":0,"time":"2023-09-06T10:25:31+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p54qca6v4 7/0/new-height/0}","ticker":"1.950979209s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 7/0/new-height/0}","ticker":"1.950916966s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 7/0/new-height/0}","ticker":"1.956575722s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 7/0/new-height/0}","ticker":"1.955648285s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 7/0/new-height/0}","ticker":"1.962199834s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 7/0/new-height/0}","ticker":"1.954804176s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 7/0/new-height/0}","ticker":"1.959866031s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 7/0/new-height/0}","ticker":"1.951699881s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 7/0/new-height/0}","ticker":"1.951888159s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.952510384s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 7/0/new-height/0}","ticker":"1.950577476s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.952510384s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 7/0/new-height/0}","ticker":"1.959913041s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 7/0/new-height/0}","ticker":"1.956442277s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.957161527s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.957161527s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.956489535s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.956489535s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.951743896s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.951743896s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.95545831s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.95545831s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.954732904s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.954732904s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p598fm5tg 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.950529366s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951162056s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.957796717s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.950529366s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951162056s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.957796717s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.95707633s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.951115261s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.955591504s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.955530622s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.955530622s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951936454s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.951115261s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.955591504s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","time":"2023-09-06T10:25:32+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.962110335s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.951936454s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.956476789s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.954850399s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.962110335s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.950610759s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.95707633s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.954850399s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.95656058s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.950610759s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.952463985s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.95784609s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.95656058s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.95121065s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.952463985s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.95784609s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.950852123s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.950852123s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.956476789s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.95121065s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","time":"2023-09-06T10:25:32+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.951986697s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","height":8,"active":true,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"1.951986697s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.957172301s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:32+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.957172301s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","height":8,"active":false,"time":"2023-09-06T10:25:32+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.951791558s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.959787438s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.951791558s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.959787438s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","time":"2023-09-06T10:25:32+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.952560106s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.954686701s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"1.952560106s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.954778302s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.954686701s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.954778302s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.955405977s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.956546099s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.955405977s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.956546099s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.955510305s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"1.955510305s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 8/0/propose/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","duration":"2s","height":8,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","duration":"4s","height":8,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.962210837s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.962210837s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.954895494s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.954895494s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.957900492s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"1.957900492s@ 7/0/new-height","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"2s@ 7/0/query-proposal","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1psgn080ye 8/0/prepare/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","proposal":"{8/0 ๐Ÿ—ƒ {โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:32+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","ticker":"4s@ 6/0/change-proposer","time":"2023-09-06T10:25:32+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/prepare/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 7}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/precommit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} -{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","block":"{โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C5AAA7795BE8 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:32+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.95422839s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.954228242s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.954208256s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.954216602s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.954099042s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.954080381s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.953737466s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.953627011s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.953545554s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","address":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","power":1,"tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:32+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.950635576s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.950598522s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.950568476s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.950303783s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.950251809s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.950204446s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.950157434s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.95012464s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.950075418s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.949699648s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.949645269s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.949599937s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.94957678s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.949523932s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.949482202s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.948916713s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.948867229s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.948820171s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1psgn080ye 8/0/commit/0}","hash":"34A096489E91","time":"2023-09-06T10:25:32+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.947672552s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.94757921s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.947490166s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 8/0/new-height/0}","vote":"{8/0/PRECOMMIT โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:32+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 7 โ‡ˆ 7 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.944467761s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.94440872s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.944336206s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"ADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.943672323s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.943617356s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.943572659s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","duration":"1.942957642s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","duration":"1.942912134s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","duration":"1.942871686s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"ADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"ADE6D4A2829B {1: โŒ˜ [ADE6D4A2829B ]}","time":"2023-09-06T10:25:32+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","duration":"1.940519258s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","duration":"1.940481918s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","duration":"1.940442056s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","time":"2023-09-06T10:25:32+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{โŒ˜ 8 34A096489E91}","time":"2023-09-06T10:25:32+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","duration":"1.937973918s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","duration":"1.937973161s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","duration":"1.937911727s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","duration":"1.937904119s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","duration":"1.937857398s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","duration":"1.937855402s","height":8,"round":0,"target":"new-height","time":"2023-09-06T10:25:32+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:32+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0/PREPARE โŒ˜ 34A096489E91 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:32+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:32+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0}","time":"2023-09-06T10:25:32+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","ours":0,"peer":0,"time":"2023-09-06T10:25:32+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0}","time":"2023-09-06T10:25:32+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","ours":0,"peer":0,"time":"2023-09-06T10:25:32+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","time":"2023-09-06T10:25:32+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{8/0}","time":"2023-09-06T10:25:32+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{8/0}","time":"2023-09-06T10:25:32+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","ours":0,"peer":0,"time":"2023-09-06T10:25:32+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"88E4ABCF3238 {1: โŒ˜ [88E4ABCF3238 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 88E4ABCF3238 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1psgn080ye->pc1pa64pr29d 80000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ E322A027F71E ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 500000}","err":"invalid fee: fee is wrong, expected: 1000, got: 0","time":"2023-09-06T10:25:33+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"06F0C1BAF010 {1: โŒ˜ [06F0C1BAF010 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06F0C1BAF010 ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1patv4z4eu 50000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 06BA46D274AF ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1pa64pr29d->pc1pcwtnvgy9 50000000}","err":"insufficient funds","time":"2023-09-06T10:25:33+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"1B26EAA6EA3C {1: โŒ˜ [1B26EAA6EA3C ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B26EAA6EA3C ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1pcwtnvgy9 10}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"D62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"D62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsD62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"D62BCC5C68EA {1: โŒ˜ [D62BCC5C68EA ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ D62BCC5C68EA ๐Ÿต 34a09648 {Send ๐Ÿ’ธ pc1patv4z4eu->pc1p3us6rl7z 1}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56EFDEFBA426 {1: โŒ˜ [56EFDEFBA426 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 1 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56EFDEFBA426 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1ppqfxuy3h 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"62295A176C13 {1: โŒ˜ [62295A176C13 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 2 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 62295A176C13 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p24snhmkw 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"52CE7679DD6F {1: โŒ˜ [52CE7679DD6F ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 3 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 52CE7679DD6F ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pg3yhezax 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"CAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"CAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"CAFD8C7BD3B8 {1: โŒ˜ [CAFD8C7BD3B8 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 4 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CAFD8C7BD3B8 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p8ngea89f 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"9BFDADBC8FD2 {1: โŒ˜ [9BFDADBC8FD2 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 5 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFDADBC8FD2 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p6h3qjpec 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"66F12376610B {1: โŒ˜ [66F12376610B ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 6 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F12376610B ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p9jkm6rms 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"157B827E6629 {1: โŒ˜ [157B827E6629 ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 7 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 157B827E6629 ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1pafen0x39 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:33+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"56FD1397CA1A {1: โŒ˜ [56FD1397CA1A ]}","time":"2023-09-06T10:25:33+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 8 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 56FD1397CA1A ๐Ÿต 34a09648 {Bond ๐Ÿ” pc1p598fm5tg->pc1p38j3r9xm 1000000}","time":"2023-09-06T10:25:33+03:30","message":"transaction appended into pool"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 8/0/new-height/0}","ticker":"1.954216602s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 8/0/new-height/0}","ticker":"1.949482202s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 8/0/new-height/0}","ticker":"1.954208256s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 8/0/new-height/0}","ticker":"1.95422839s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 8/0/new-height/0}","ticker":"1.953737466s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 8/0/new-height/0}","ticker":"1.949599937s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 8/0/new-height/0}","ticker":"1.94440872s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 8/0/new-height/0}","ticker":"1.937911727s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 8/0/new-height/0}","ticker":"1.944467761s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.940442056s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 8/0/new-height/0}","ticker":"1.940519258s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.940442056s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 8/0/new-height/0}","ticker":"1.947490166s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 8/0/new-height/0}","ticker":"1.950075418s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.954080381s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.943617356s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.954080381s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.943617356s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.950204446s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.942912134s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.950204446s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.940481918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.948867229s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.942912134s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.940481918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.948867229s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.949523932s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.949645269s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.949523932s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.949645269s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.94757921s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.937904119s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.94757921s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.937904119s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.950251809s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.950251809s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","time":"2023-09-06T10:25:34+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.950303783s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.950303783s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.954228242s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.954228242s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.94957678s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"1.94957678s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pafen0x39 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","height":9,"active":true,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.95012464s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.948820171s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.95012464s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.948820171s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.950568476s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:34+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","time":"2023-09-06T10:25:34+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.937855402s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.950598522s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.937855402s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.950598522s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.937973161s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.954099042s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.937973161s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.953627011s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.950568476s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.954099042s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.953627011s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","time":"2023-09-06T10:25:34+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.948916713s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.937857398s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.948916713s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.937973918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.937857398s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.937973918s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.949699648s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.953545554s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"1.949699648s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950157434s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.953545554s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950157434s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950635576s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"1.950635576s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#8 โŒ˜ 34A096489E91 ๐Ÿ•ฃ 10.25.32}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid transaction: validator is in committee","time":"2023-09-06T10:25:34+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","height":9,"active":false,"time":"2023-09-06T10:25:34+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.944336206s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.944336206s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.943572659s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.943572659s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.942871686s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.942871686s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 9/0/propose/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","duration":"2s","height":9,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","duration":"4s","height":9,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1psgn080ye 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.942957642s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.942957642s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.943672323s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.943672323s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.947672552s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"1.947672552s@ 8/0/new-height","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"2s@ 8/0/query-proposal","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/prepare/0}","ticker":"4s@ 7/0/change-proposer","time":"2023-09-06T10:25:34+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"parsing Proposal message"} -{"level":"info","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","proposal":"{9/0 ๐Ÿ—ƒ {โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}}","time":"2023-09-06T10:25:34+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/prepare/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 8}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/precommit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} -{"level":"info","_consensus":"{pc1p54qca6v4 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.909124685s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.909075723s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.90897931s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} -{"level":"info","_consensus":"{pc1p598fm5tg 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.90872069s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.90870978s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.90862535s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} -{"level":"info","_state":"{#9 โŒ˜ 5A7E54D23BBD ๐Ÿ•ฃ 10.25.34}","block":"{โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 6199F1992C2D ๐Ÿ“จ 13}","round":0,"time":"2023-09-06T10:25:34+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:34+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} -{"level":"info","_consensus":"{pc1psgn080ye 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.902230129s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.902185398s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ ADE6D4A2829B ๐Ÿต 34a09648 {Sortition ๐ŸŽฏ pc1psgn080ye}","err":"invalid proof","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"ade6d4a2829b6501b610a61dff3e1d72d774a1f8c6b43f71e7a876376c926d16","time":"2023-09-06T10:25:34+03:30","message":"invalid transaction after rechecking"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.902103398s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6qk3axu7 9/0/commit/0}","hash":"5A7E54D23BBD","time":"2023-09-06T10:25:34+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.902029075s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.902000449s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.901892039s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:34+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","vote":"{9/0/PRECOMMIT โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:34+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.870170518s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.87010798s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.870058512s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.869810802s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.869770081s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.869714847s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.855730909s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.855685984s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 8 โ‡ˆ 8 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.855655454s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.855624127s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.855570173s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.855520981s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:34+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.838137358s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.838090973s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:34+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.838042101s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.835402439s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.835345844s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.835297014s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.826115008s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.826062147s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.826020276s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.825532239s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.825479103s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.825424575s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","duration":"1.794793046s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","duration":"1.794736834s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","duration":"1.794695088s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:34+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:34+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","duration":"1.791738066s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","duration":"1.791682768s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","duration":"1.79163825s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","duration":"1.786094354s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","duration":"1.786025764s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","duration":"1.785977685s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:34+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:34+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{โŒ˜ 9 5A7E54D23BBD}","time":"2023-09-06T10:25:34+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","duration":"1.783038087s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","duration":"1.782983741s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","duration":"1.782937861s","height":9,"round":0,"target":"new-height","time":"2023-09-06T10:25:34+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:34+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:34+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:34+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","time":"2023-09-06T10:25:34+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:35+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:35+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:35+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0/PREPARE โŒ˜ 5A7E54D23BBD ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:35+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:35+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:35+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","time":"2023-09-06T10:25:35+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:35+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{9/0}","time":"2023-09-06T10:25:35+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:35+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{9/0}","time":"2023-09-06T10:25:35+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","ours":0,"peer":0,"time":"2023-09-06T10:25:35+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:35+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1pg3yhezax 9/0/new-height/0}","ticker":"1.902185398s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 9/0/new-height/0}","ticker":"1.794793046s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 9/0/new-height/0}","ticker":"1.835402439s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 9/0/new-height/0}","ticker":"1.902103398s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 9/0/new-height/0}","ticker":"1.838042101s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 9/0/new-height/0}","ticker":"1.838090973s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.87010798s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.87010798s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.782983741s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 9/0/new-height/0}","ticker":"1.90872069s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.785977685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.782983741s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.902000449s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 9/0/new-height/0}","ticker":"1.79163825s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.785977685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.902000449s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 9/0/new-height/0}","ticker":"1.786094354s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 9/0/new-height/0}","ticker":"1.826062147s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.869714847s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.869714847s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.835345844s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.835345844s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 9/0/new-height/0}","ticker":"1.855655454s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 9/0/new-height/0}","ticker":"1.791682768s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.901892039s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.901892039s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.786025764s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.786025764s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.869770081s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.869770081s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pafen0x39 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.855685984s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.855685984s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.794695088s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","time":"2023-09-06T10:25:36+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.794695088s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.855730909s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.855730909s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.826020276s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.855520981s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.826020276s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.909124685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.855520981s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.855570173s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.794736834s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.90897931s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.909124685s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","time":"2023-09-06T10:25:36+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.855570173s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.794736834s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.825424575s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.90897931s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.825424575s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.855624127s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.826115008s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.909075723s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.855624127s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.909075723s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"1.826115008s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.791738066s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.825479103s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.90862535s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.791738066s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.90862535s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.825479103s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.825532239s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"1.825532239s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.90870978s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.90870978s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","height":10,"active":false,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.870058512s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.870058512s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","time":"2023-09-06T10:25:36+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.782937861s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.902230129s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.902230129s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.782937861s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","height":10,"active":true,"time":"2023-09-06T10:25:36+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.870170518s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.835297014s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.870170518s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:36+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.835297014s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.783038087s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"1.783038087s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/propose/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","duration":"2s","height":10,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","duration":"4s","height":10,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.869810802s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.869810802s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.838137358s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.838137358s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.902029075s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"1.902029075s@ 9/0/new-height","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"4s@ 8/0/change-proposer","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 10/0/prepare/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","proposal":"{10/0 ๐Ÿ—ƒ {โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:36+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/prepare/0}","ticker":"2s@ 9/0/query-proposal","time":"2023-09-06T10:25:36+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/prepare/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 9}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.960786099s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.960774781s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.960686677s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/precommit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.958697064s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.958690589s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.958601467s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.956711176s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.956655516s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.956609113s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.955147385s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.955113052s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.955081723s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} -{"level":"info","_state":"{#10 โŒ˜ 62B9EDE9EA9F ๐Ÿ•ฃ 10.25.36}","block":"{โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 8E4AB711DFC9 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:36+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.949235081s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.94913264s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.949051776s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:36+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 10/0/commit/0}","hash":"62B9EDE9EA9F","time":"2023-09-06T10:25:36+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.948823377s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.948787443s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.94867986s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.947799421s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.947771569s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.947735038s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.947717778s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.94768128s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.947668165s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","duration":"1.94695291s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","duration":"1.946954036s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","duration":"1.946895343s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","duration":"1.946893909s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","duration":"1.946842072s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","duration":"1.946843352s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.94588619s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.945833453s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.945789402s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","vote":"{10/0/PRECOMMIT โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.945172947s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.945114161s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.945068954s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 9 โ‡ˆ 9 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.944947898s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.944886883s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.944853878s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","duration":"1.944443991s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","duration":"1.944396798s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.944353255s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","duration":"1.944349632s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.944321442s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.94429343s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{โŒ˜ 10 62B9EDE9EA9F}","time":"2023-09-06T10:25:36+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","duration":"1.943885325s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","duration":"1.943853272s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","duration":"1.943824681s","height":10,"round":0,"target":"new-height","time":"2023-09-06T10:25:36+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:36+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:36+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:36+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:36+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:36+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:36+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:36+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:36+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:36+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:36+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:36+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:36+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:37+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:37+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:37+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0/PREPARE โŒ˜ 62B9EDE9EA9F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:37+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:37+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:37+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:37+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:37+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","time":"2023-09-06T10:25:37+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{10/0}","time":"2023-09-06T10:25:37+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{10/0}","time":"2023-09-06T10:25:37+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","ours":0,"peer":0,"time":"2023-09-06T10:25:37+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 10/0/new-height/0}","ticker":"1.948787443s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 10/0/new-height/0}","ticker":"1.945789402s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 10/0/new-height/0}","ticker":"1.958697064s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 10/0/new-height/0}","ticker":"1.947799421s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 10/0/new-height/0}","ticker":"1.945114161s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 10/0/new-height/0}","ticker":"1.948823377s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 10/0/new-height/0}","ticker":"1.958690589s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.945068954s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 10/0/new-height/0}","ticker":"1.94768128s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 10/0/new-height/0}","ticker":"1.958601467s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.945068954s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 10/0/new-height/0}","ticker":"1.94867986s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 10/0/new-height/0}","ticker":"1.945172947s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 10/0/new-height/0}","ticker":"1.946893909s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.949051776s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.949051776s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.944396798s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.944349632s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.944396798s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944321442s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.944349632s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944321442s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.945833453s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.945833453s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.943853272s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.94913264s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.943853272s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.94913264s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944886883s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.944886883s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.946842072s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.946842072s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.955113052s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","height":11,"active":false,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.960686677s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 11/0/new-height/0}","height":11,"active":true,"time":"2023-09-06T10:25:38+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.955113052s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.947735038s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.960686677s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.955081723s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.94429343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.947735038s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.955081723s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","time":"2023-09-06T10:25:38+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.94429343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.956609113s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","time":"2023-09-06T10:25:38+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.960774781s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.956609113s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 11/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:38+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.947668165s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.944853878s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.960774781s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.943885325s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.947668165s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.943885325s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","time":"2023-09-06T10:25:38+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.944853878s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.946895343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.955147385s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.946843352s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.946895343s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.944443991s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.956655516s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.944443991s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944353255s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.955147385s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.947717778s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.956655516s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944353255s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.946843352s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.943824681s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.947717778s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.94588619s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.94695291s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.943824681s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.94588619s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.94695291s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944947898s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"1.944947898s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.947771569s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"1.947771569s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.949235081s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"1.949235081s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 11/0/propose/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","duration":"2s","height":11,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","duration":"4s","height":11,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.946954036s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.946954036s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.960786099s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.960786099s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.956711176s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"1.956711176s@ 10/0/new-height","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"2s@ 10/0/query-proposal","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 11/0/prepare/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","proposal":"{11/0 ๐Ÿ—ƒ {โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:38+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/prepare/0}","ticker":"4s@ 9/0/change-proposer","time":"2023-09-06T10:25:38+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/prepare/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 10}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/precommit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.953701779s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.95369401s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.95357347s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} -{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.951766323s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.951753946s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.951650787s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.950989646s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.950860179s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.950772994s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.949161542s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.949101334s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.949049913s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.948365754s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.948309741s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.948258742s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.947964682s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.947915634s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.947868187s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.947223317s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.947168261s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.947125625s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#11 โŒ˜ 98151F5A1707 ๐Ÿ•ฃ 10.25.38}","block":"{โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 10E28BD786F7 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:38+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.946494561s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.946443364s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.946389516s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:38+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 11/0/commit/0}","hash":"98151F5A1707","time":"2023-09-06T10:25:38+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.946043872s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.946036708s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.945926124s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:38+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.945725591s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.945673714s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.945627357s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:38+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","duration":"1.944508514s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","duration":"1.944507953s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","duration":"1.944476954s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","duration":"1.94444054s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","duration":"1.944430281s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","duration":"1.944419003s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","duration":"1.944383583s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","duration":"1.944384735s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","duration":"1.944368713s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","vote":"{11/0/PRECOMMIT โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:38+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:38+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 10 โ‡ˆ 10 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.94230647s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.942258823s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.942210436s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.941601408s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.941555555s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.941508669s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{โŒ˜ 11 98151F5A1707}","time":"2023-09-06T10:25:38+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","duration":"1.940897878s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","duration":"1.940839954s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","duration":"1.940810097s","height":11,"round":0,"target":"new-height","time":"2023-09-06T10:25:38+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:39+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0/PREPARE โŒ˜ 98151F5A1707 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:39+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0}","time":"2023-09-06T10:25:39+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","ours":0,"peer":0,"time":"2023-09-06T10:25:39+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0}","time":"2023-09-06T10:25:39+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","time":"2023-09-06T10:25:39+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","ours":0,"peer":0,"time":"2023-09-06T10:25:39+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{11/0}","time":"2023-09-06T10:25:39+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{11/0}","time":"2023-09-06T10:25:39+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","ours":0,"peer":0,"time":"2023-09-06T10:25:39+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 11/0/new-height/0}","ticker":"1.946036708s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 11/0/new-height/0}","ticker":"1.948365754s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 11/0/new-height/0}","ticker":"1.944508514s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 11/0/new-height/0}","ticker":"1.946043872s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 11/0/new-height/0}","ticker":"1.95369401s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 11/0/new-height/0}","ticker":"1.945627357s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 11/0/new-height/0}","ticker":"1.940810097s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 11/0/new-height/0}","ticker":"1.947125625s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 11/0/new-height/0}","ticker":"1.946443364s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.940839954s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.940839954s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 11/0/new-height/0}","ticker":"1.948258742s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.942258823s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 11/0/new-height/0}","ticker":"1.944476954s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 11/0/new-height/0}","ticker":"1.944419003s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.942258823s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.944368713s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.944368713s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.941555555s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.941555555s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.947868187s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.947868187s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947168261s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.951650787s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947168261s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.951650787s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947915634s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.947915634s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.951753946s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.951753946s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.949101334s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.949101334s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.944383583s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","time":"2023-09-06T10:25:40+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.944430281s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.944383583s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.944430281s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.944507953s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.949049913s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.944507953s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.949049913s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.948309741s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.95357347s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.948309741s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.95357347s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.953701779s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.953701779s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.949161542s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"1.949161542s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p598fm5tg 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.946389516s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.946389516s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.944384735s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.945673714s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.944384735s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.945673714s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.950772994s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.94444054s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.950772994s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.94444054s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.950860179s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.950860179s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","time":"2023-09-06T10:25:40+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.941601408s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","height":12,"active":false,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.941601408s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 12/0/new-height/0}","height":12,"active":true,"time":"2023-09-06T10:25:40+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.942210436s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.940897878s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:40+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.942210436s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.940897878s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.941508669s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.94230647s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"1.94230647s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.941508669s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","time":"2023-09-06T10:25:40+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.945926124s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947223317s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.945926124s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947223317s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947964682s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.947964682s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.951766323s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"1.951766323s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 12/0/propose/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","duration":"2s","height":12,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","duration":"4s","height":12,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.950989646s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.950989646s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.946494561s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.946494561s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.945725591s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"1.945725591s@ 11/0/new-height","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"4s@ 10/0/change-proposer","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","ticker":"2s@ 11/0/query-proposal","time":"2023-09-06T10:25:40+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 12/0/prepare/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","proposal":"{12/0 ๐Ÿ—ƒ {โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:40+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/prepare/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 11}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/precommit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.957236349s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.957224226s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.957118638s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} -{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.952488326s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.952460666s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.952449382s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.952459851s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.952350001s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.952347962s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.950944274s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.950889102s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.950812216s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#12 โŒ˜ 14D7EF3BCBFC ๐Ÿ•ฃ 10.25.40}","block":"{โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป C78AF87D6F5D ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:40+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.950316981s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.950271096s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.950230924s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:40+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 12/0/commit/0}","hash":"14D7EF3BCBFC","time":"2023-09-06T10:25:40+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.949935182s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.949928527s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.949835179s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","duration":"1.948463747s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","duration":"1.948403312s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.948357621s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","duration":"1.948345726s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.948335707s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.948302735s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.9482844s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.948250494s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.948237879s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.947638665s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.947593738s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.947560618s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.947553566s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.947497666s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.947452946s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","duration":"1.946874123s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","duration":"1.946826659s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","duration":"1.946776346s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","duration":"1.946774332s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","duration":"1.946725068s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","duration":"1.946681619s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","vote":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:40+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 11 โ‡ˆ 11 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.945628854s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.945584568s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.945544064s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.944960638s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.944918086s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.944781556s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{โŒ˜ 12 14D7EF3BCBFC}","time":"2023-09-06T10:25:40+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","duration":"1.944176817s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","duration":"1.944144463s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","duration":"1.944117774s","height":12,"round":0,"target":"new-height","time":"2023-09-06T10:25:40+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:40+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:40+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PREPARE โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:40+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:40+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:40+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:40+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:40+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:40+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:40+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:40+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:40+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:41+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:41+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:41+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0/PRECOMMIT โŒ˜ 14D7EF3BCBFC ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:41+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","time":"2023-09-06T10:25:41+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:41+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:41+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{12/0}","time":"2023-09-06T10:25:41+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:41+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{12/0}","time":"2023-09-06T10:25:41+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:41+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","ours":0,"peer":0,"time":"2023-09-06T10:25:41+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 12/0/new-height/0}","ticker":"1.949928527s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 12/0/new-height/0}","ticker":"1.952460666s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 12/0/new-height/0}","ticker":"1.957236349s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 12/0/new-height/0}","ticker":"1.949935182s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 12/0/new-height/0}","ticker":"1.950230924s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 12/0/new-height/0}","ticker":"1.952488326s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 12/0/new-height/0}","ticker":"1.946826659s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 12/0/new-height/0}","ticker":"1.944117774s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 12/0/new-height/0}","ticker":"1.947553566s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 12/0/new-height/0}","ticker":"1.950271096s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 12/0/new-height/0}","ticker":"1.9482844s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944144463s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 12/0/new-height/0}","ticker":"1.946681619s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944144463s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944918086s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.944918086s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.945584568s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.945584568s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","time":"2023-09-06T10:25:42+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.948237879s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.946725068s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.948237879s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.946725068s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.946774332s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.952350001s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.946774332s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.947497666s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.952350001s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.947560618s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.947497666s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.947452946s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.952449382s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.947452946s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.952449382s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.947560618s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.948335707s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.945544064s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"1.948335707s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.945544064s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","time":"2023-09-06T10:25:42+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.944781556s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944176817s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.944781556s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944176817s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.949835179s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944960638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.944960638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.949835179s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.945628854s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"1.945628854s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 13/0/new-height/0}","height":13,"active":true,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.948345726s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 13/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:42+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.948345726s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.952459851s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.950812216s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.952459851s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","time":"2023-09-06T10:25:42+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.950812216s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.947593738s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950316981s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.957118638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.947593738s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950316981s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.957118638s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.948302735s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950944274s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.948302735s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.950944274s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.950889102s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.950889102s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.948463747s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"1.948463747s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.948403312s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.948403312s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.957224226s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.957224226s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","height":13,"active":false,"time":"2023-09-06T10:25:42+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.948250494s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.948250494s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.952347962s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.952347962s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.946776346s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.946776346s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 13/0/propose/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","duration":"2s","height":13,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","duration":"4s","height":13,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.946874123s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.946874123s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.947638665s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.947638665s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.948357621s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"1.948357621s@ 12/0/new-height","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"2s@ 12/0/query-proposal","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/prepare/0}","ticker":"4s@ 11/0/change-proposer","time":"2023-09-06T10:25:42+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","proposal":"{13/0 ๐Ÿ—ƒ {โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:42+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/prepare/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PREPARE โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 12}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} -{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.957664352s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.957642079s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.957649926s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.957634631s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.957525749s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.957505265s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/precommit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.953963535s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.953961794s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.953921967s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.953895107s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.953864455s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.953872645s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.949044614s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.948998093s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.94890353s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.947700058s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.947655105s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.947594217s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.947448289s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.947387056s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#13 โŒ˜ 5019C28BF2C8 ๐Ÿ•ฃ 10.25.42}","block":"{โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 523250B502D1 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:42+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.947333335s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:42+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 13/0/commit/0}","hash":"5019C28BF2C8","time":"2023-09-06T10:25:42+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.946865839s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.946854258s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.946761748s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","duration":"1.945563894s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","duration":"1.945524416s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","duration":"1.945465292s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","duration":"1.945404358s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","duration":"1.945351272s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","duration":"1.945302353s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.945189477s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.945139411s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.945094844s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.944624955s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.944575855s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.944531317s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","duration":"1.943896343s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","duration":"1.94384918s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","duration":"1.943811379s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","vote":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:42+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 12 โ‡ˆ 12 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.943042739s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.942996016s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.942955776s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.942366492s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.942322306s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.942276064s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{โŒ˜ 13 5019C28BF2C8}","time":"2023-09-06T10:25:42+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","duration":"1.941681587s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","duration":"1.941638318s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","duration":"1.941597632s","height":13,"round":0,"target":"new-height","time":"2023-09-06T10:25:42+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:42+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:42+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0/PRECOMMIT โŒ˜ 5019C28BF2C8 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:42+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0}","time":"2023-09-06T10:25:42+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","ours":0,"peer":0,"time":"2023-09-06T10:25:42+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","time":"2023-09-06T10:25:42+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{13/0}","time":"2023-09-06T10:25:42+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0}","time":"2023-09-06T10:25:42+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{13/0}","time":"2023-09-06T10:25:42+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","ours":0,"peer":0,"time":"2023-09-06T10:25:42+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","ours":0,"peer":0,"time":"2023-09-06T10:25:42+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p54qca6v4 13/0/new-height/0}","ticker":"1.945563894s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 13/0/new-height/0}","ticker":"1.946854258s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 13/0/new-height/0}","ticker":"1.957642079s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 13/0/new-height/0}","ticker":"1.947594217s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 13/0/new-height/0}","ticker":"1.945302353s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 13/0/new-height/0}","ticker":"1.957634631s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 13/0/new-height/0}","ticker":"1.957649926s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 13/0/new-height/0}","ticker":"1.945139411s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 13/0/new-height/0}","ticker":"1.944531317s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 13/0/new-height/0}","ticker":"1.942955776s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 13/0/new-height/0}","ticker":"1.949044614s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942322306s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.944575855s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.94890353s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.944575855s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 13/0/new-height/0}","ticker":"1.946865839s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942322306s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.941638318s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.941638318s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.948998093s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.948998093s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942996016s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.942276064s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.94890353s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.942996016s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.94384918s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.94384918s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.945094844s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.942276064s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.945094844s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.941597632s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.943811379s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.941597632s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.943811379s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.946761748s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.946761748s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.945351272s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.953864455s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.945351272s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.953864455s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.953895107s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.947333335s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.953895107s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.947333335s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.947387056s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.957505265s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.947387056s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.957505265s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.945465292s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pafen0x39 14/0/new-height/0}","height":14,"active":false,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.945465292s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.957525749s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.945524416s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.957525749s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.945524416s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 14/0/new-height/0}","height":14,"active":true,"time":"2023-09-06T10:25:44+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.953872645s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:44+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.953872645s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.947655105s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","time":"2023-09-06T10:25:44+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.947655105s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","time":"2023-09-06T10:25:44+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.957664352s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","time":"2023-09-06T10:25:44+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.953921967s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.957664352s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.945189477s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.953921967s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.945189477s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.942366492s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.943896343s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.942366492s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.943896343s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.947700058s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.941681587s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.947700058s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.944624955s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.941681587s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.953963535s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"1.944624955s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.943042739s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"1.953963535s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"1.943042739s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/propose/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","duration":"2s","height":14,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","duration":"4s","height":14,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.947448289s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.947448289s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.953961794s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.953961794s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.945404358s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"1.945404358s@ 13/0/new-height","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","ticker":"2s@ 13/0/query-proposal","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 14/0/prepare/0}","proposal":"{14/0 ๐Ÿ—ƒ {โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:44+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","ticker":"4s@ 12/0/change-proposer","time":"2023-09-06T10:25:44+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/prepare/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 13}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/precommit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.958428732s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.958418355s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.958314727s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.954352251s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.954340834s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.954256768s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.952871634s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.952814837s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.952762005s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.952034497s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.952028907s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.951948929s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.951072218s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.951011601s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.950961448s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.950420519s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"info","_state":"{#14 โŒ˜ B7D18909D72F ๐Ÿ•ฃ 10.25.44}","block":"{โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 9EE5A9CA580A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:44+03:30","message":"new block committed"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.950367579s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.950319484s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.950320563s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.950253211s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.950207605s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:44+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 14/0/commit/0}","hash":"B7D18909D72F","time":"2023-09-06T10:25:44+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.949728044s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.949721057s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.949638131s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:44+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","duration":"1.948488049s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","duration":"1.948444529s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","duration":"1.948412759s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.948193414s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","duration":"1.948199121s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.948157391s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","duration":"1.948145139s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.948110712s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","duration":"1.948100331s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.947661509s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.947629103s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.947582245s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","duration":"1.946977999s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","duration":"1.946923749s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","duration":"1.946875661s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","vote":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:44+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 13 โ‡ˆ 13 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.946095866s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.946048127s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.946002785s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.945412963s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.945367597s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.945327264s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{โŒ˜ 14 B7D18909D72F}","time":"2023-09-06T10:25:44+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","duration":"1.944747185s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","duration":"1.944703528s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","duration":"1.944662632s","height":14,"round":0,"target":"new-height","time":"2023-09-06T10:25:44+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:44+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PRECOMMIT โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:44+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:44+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:44+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:44+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:44+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:44+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:44+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:44+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:44+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:44+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:45+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:45+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:45+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0/PREPARE โŒ˜ B7D18909D72F ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:45+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:45+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:45+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:45+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:45+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","time":"2023-09-06T10:25:45+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{14/0}","time":"2023-09-06T10:25:45+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{14/0}","time":"2023-09-06T10:25:45+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","ours":0,"peer":0,"time":"2023-09-06T10:25:45+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:45+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1pg3yhezax 14/0/new-height/0}","ticker":"1.952028907s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 14/0/new-height/0}","ticker":"1.949728044s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 14/0/new-height/0}","ticker":"1.950207605s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 14/0/new-height/0}","ticker":"1.949721057s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 14/0/new-height/0}","ticker":"1.948199121s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 14/0/new-height/0}","ticker":"1.958418355s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 14/0/new-height/0}","ticker":"1.948110712s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 14/0/new-height/0}","ticker":"1.954352251s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 14/0/new-height/0}","ticker":"1.958314727s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 14/0/new-height/0}","ticker":"1.946977999s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.950961448s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 14/0/new-height/0}","ticker":"1.951011601s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.950961448s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.946875661s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.954256768s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.946875661s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.954256768s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 14/0/new-height/0}","ticker":"1.944662632s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.947582245s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.948412759s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.947582245s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.948412759s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.951948929s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.947629103s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.951948929s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.947629103s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.948157391s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.948157391s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.946923749s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.946923749s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","time":"2023-09-06T10:25:46+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.947661509s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.947661509s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.948193414s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.948100331s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.948100331s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.948193414s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","time":"2023-09-06T10:25:46+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.950319484s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.948145139s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.958428732s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.952034497s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.950319484s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.948145139s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.958428732s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"1.952034497s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.950367579s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.952762005s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.952871634s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.950367579s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.952762005s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.952871634s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.952814837s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.952814837s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.950420519s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"1.950420519s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.944703528s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.944703528s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.945327264s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.945367597s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","height":15,"active":true,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.945327264s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.945367597s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:46+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.946002785s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.946048127s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.946002785s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.946048127s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","height":15,"active":false,"time":"2023-09-06T10:25:46+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.949638131s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","time":"2023-09-06T10:25:46+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.949638131s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.950253211s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.950320563s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.950253211s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.950320563s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.948488049s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.948444529s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.948488049s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.948444529s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.951072218s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"1.951072218s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.954340834s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.954340834s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 15/0/propose/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","duration":"2s","height":15,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","duration":"4s","height":15,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.944747185s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.944747185s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.945412963s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.945412963s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.946095866s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"1.946095866s@ 14/0/new-height","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"4s@ 13/0/change-proposer","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","ticker":"2s@ 14/0/query-proposal","time":"2023-09-06T10:25:46+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 15/0/prepare/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","proposal":"{15/0 ๐Ÿ—ƒ {โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:46+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/prepare/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 14}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.959971149s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.959956586s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.959867429s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/precommit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.958546578s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.958535991s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.95843833s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.955814146s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.955750325s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.955704056s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.954774667s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.954725942s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.954672249s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} -{"level":"info","_state":"{#15 โŒ˜ CC53F51134EF ๐Ÿ•ฃ 10.25.46}","block":"{โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 2E849539158B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:46+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.949173332s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.949123999s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.949030658s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:46+03:30","message":"set new sandbox"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1psgn080ye 15/0/commit/0}","hash":"CC53F51134EF","time":"2023-09-06T10:25:46+03:30","message":"block committed, schedule new height"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.948392379s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.948379594s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.948278327s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.947719516s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.947685545s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.947619385s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.947666637s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.947563403s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.947508809s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","duration":"1.946911267s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","duration":"1.946857119s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","duration":"1.946809846s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","duration":"1.946781319s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","duration":"1.946729193s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","duration":"1.946681888s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.945296016s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.945239813s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.945190501s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 15/0/new-height/0}","vote":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:46+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 14 โ‡ˆ 14 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.944547203s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.944511598s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.944485707s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.944472591s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.944435051s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.944428161s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.943944484s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.943911333s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.943881272s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","duration":"1.943807525s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","duration":"1.943755697s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","duration":"1.94370464s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{โŒ˜ 15 CC53F51134EF}","time":"2023-09-06T10:25:46+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","duration":"1.943263584s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","duration":"1.943210692s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","duration":"1.943163518s","height":15,"round":0,"target":"new-height","time":"2023-09-06T10:25:46+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:46+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:46+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PRECOMMIT โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:46+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:46+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:46+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","time":"2023-09-06T10:25:46+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:46+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:46+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:46+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:46+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:46+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:46+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:47+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:47+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:47+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0/PREPARE โŒ˜ CC53F51134EF ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:47+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","time":"2023-09-06T10:25:47+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:47+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:47+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:47+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:47+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{15/0}","time":"2023-09-06T10:25:47+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{15/0}","time":"2023-09-06T10:25:47+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","ours":0,"peer":0,"time":"2023-09-06T10:25:47+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pg3yhezax 15/0/new-height/0}","ticker":"1.948379594s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 15/0/new-height/0}","ticker":"1.958546578s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 15/0/new-height/0}","ticker":"1.959971149s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 15/0/new-height/0}","ticker":"1.954725942s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 15/0/new-height/0}","ticker":"1.948392379s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 15/0/new-height/0}","ticker":"1.955704056s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 15/0/new-height/0}","ticker":"1.946809846s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 15/0/new-height/0}","ticker":"1.949173332s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 15/0/new-height/0}","ticker":"1.949030658s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 15/0/new-height/0}","ticker":"1.945239813s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 15/0/new-height/0}","ticker":"1.955750325s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943911333s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 15/0/new-height/0}","ticker":"1.943163518s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943911333s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943210692s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.943210692s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.944472591s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.944472591s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p598fm5tg 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.947508809s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pafen0x39 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.947508809s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.94370464s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.946681888s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.94370464s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.946681888s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","time":"2023-09-06T10:25:48+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.945190501s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.943755697s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.945190501s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.945296016s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.943755697s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.944435051s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.945296016s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.944435051s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.949123999s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.959867429s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.943807525s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.949123999s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.959867429s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.943807525s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.944485707s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.944547203s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.944485707s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"1.944547203s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.947619385s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 16/0/new-height/0}","height":16,"active":true,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:48+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.947619385s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.958535991s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.948278327s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.958535991s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.948278327s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","time":"2023-09-06T10:25:48+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.954672249s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.943881272s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.954774667s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.954672249s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.943881272s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","time":"2023-09-06T10:25:48+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.946857119s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.944428161s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.954774667s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943263584s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.947563403s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943263584s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.947563403s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.946911267s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943944484s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.946857119s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.943944484s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.95843833s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.944428161s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.946911267s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.95843833s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.944511598s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.947685545s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"1.944511598s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"1.947685545s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","height":16,"active":false,"time":"2023-09-06T10:25:48+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.959956586s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.959956586s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.946729193s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.946729193s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.947666637s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.947666637s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 16/0/propose/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","duration":"2s","height":16,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","duration":"4s","height":16,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.955814146s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.955814146s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.946781319s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.946781319s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.947719516s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"1.947719516s@ 15/0/new-height","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","ticker":"4s@ 14/0/change-proposer","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1psgn080ye 16/0/prepare/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","proposal":"{16/0 ๐Ÿ—ƒ {โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:48+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","ticker":"2s@ 15/0/query-proposal","time":"2023-09-06T10:25:48+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/prepare/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 15}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.962090012s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.962076403s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.961978892s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/precommit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.960200555s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.960190023s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.960092491s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.958660511s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.958608171s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.958562466s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.955560817s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.955508145s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.955452422s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.954330512s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.954323929s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.954246465s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.953032201s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.952972718s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_state":"{#16 โŒ˜ C58C7B6940F0 ๐Ÿ•ฃ 10.25.48}","block":"{โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป B549F7B9523B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:48+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.952910083s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.952895204s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.952842605s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.952796423s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:48+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 16/0/commit/0}","hash":"C58C7B6940F0","time":"2023-09-06T10:25:48+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.952381382s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.952375196s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.952278854s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:48+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:48+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","duration":"1.951161435s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","duration":"1.951164496s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","duration":"1.951124688s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","duration":"1.951118889s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","duration":"1.951094825s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","duration":"1.951065467s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.950668598s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.950613s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.95056203s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.949952498s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.949907585s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.949855328s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 16/0/new-height/0}","vote":"{16/0/PRECOMMIT โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:48+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:48+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","duration":"1.949245202s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","duration":"1.949192166s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","duration":"1.949141291s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 15 โ‡ˆ 15 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.948780003s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.948733367s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.94868704s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.948075611s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.948030166s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.947982769s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{โŒ˜ 16 C58C7B6940F0}","time":"2023-09-06T10:25:48+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","duration":"1.947362228s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","duration":"1.94731038s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","duration":"1.947262033s","height":16,"round":0,"target":"new-height","time":"2023-09-06T10:25:48+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:49+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0/PREPARE โŒ˜ C58C7B6940F0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:49+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0}","time":"2023-09-06T10:25:49+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","ours":0,"peer":0,"time":"2023-09-06T10:25:49+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0}","time":"2023-09-06T10:25:49+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","ours":0,"peer":0,"time":"2023-09-06T10:25:49+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","time":"2023-09-06T10:25:49+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{16/0}","time":"2023-09-06T10:25:49+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{16/0}","time":"2023-09-06T10:25:49+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","ours":0,"peer":0,"time":"2023-09-06T10:25:49+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 16/0/new-height/0}","ticker":"1.954323929s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 16/0/new-height/0}","ticker":"1.960190023s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 16/0/new-height/0}","ticker":"1.958608171s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pafen0x39 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 16/0/new-height/0}","ticker":"1.954246465s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.955508145s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 16/0/new-height/0}","ticker":"1.948780003s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.955508145s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 16/0/new-height/0}","ticker":"1.951065467s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.951124688s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 16/0/new-height/0}","ticker":"1.952895204s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.951124688s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.951118889s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949855328s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.951118889s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 16/0/new-height/0}","ticker":"1.94868704s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 16/0/new-height/0}","ticker":"1.948733367s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.952972718s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949855328s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.952796423s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 16/0/new-height/0}","ticker":"1.962090012s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.952972718s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949141291s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.952796423s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949907585s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.949141291s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.952842605s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 16/0/new-height/0}","ticker":"1.954330512s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.960092491s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.962076403s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.95056203s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.962076403s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.960092491s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949907585s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.95056203s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.952842605s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949192166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.955452422s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 16/0/new-height/0}","ticker":"1.961978892s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.955452422s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.949192166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.950613s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.950613s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"our turn to propose"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947262033s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947262033s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.94731038s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947982769s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.94731038s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.947982769s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","time":"2023-09-06T10:25:50+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.948030166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.952278854s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.951164496s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.948030166s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.952278854s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.951164496s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.952375196s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.960200555s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.952375196s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.960200555s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.955560817s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"1.955560817s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","height":17,"active":true,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","height":17,"active":false,"time":"2023-09-06T10:25:50+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:50+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.951094825s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.951094825s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.958562466s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","time":"2023-09-06T10:25:50+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.958562466s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","time":"2023-09-06T10:25:50+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.952910083s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949245202s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.951161435s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.952910083s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949245202s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.951161435s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.958660511s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.950668598s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.958660511s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.950668598s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.953032201s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949952498s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"1.949952498s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"1.953032201s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 17/0/propose/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","duration":"2s","height":17,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","duration":"4s","height":17,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1psgn080ye 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.947362228s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.947362228s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.952381382s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.952381382s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.948075611s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"1.948075611s@ 16/0/new-height","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/prepare/0}","ticker":"2s@ 16/0/query-proposal","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","proposal":"{17/0 ๐Ÿ—ƒ {โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:50+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","ticker":"4s@ 15/0/change-proposer","time":"2023-09-06T10:25:50+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/prepare/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/prepare/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 16}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/precommit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.960678001s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.960666304s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.960555898s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.958298038s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.958291108s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.958200176s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.956967236s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.95691956s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.956870699s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.954996949s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.954944919s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.954900724s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","block":"{โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป DF90C7F09E98 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:50+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.949515889s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#17 โŒ˜ 5A30CBBCC695 ๐Ÿ•ฃ 10.25.50}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"sortition transaction broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.949466768s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:50+03:30","message":"set new sandbox"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.949384031s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.948103098s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.948038771s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.948034658s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.947987063s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.947976664s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.947930786s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 17/0/commit/0}","hash":"5A30CBBCC695","time":"2023-09-06T10:25:50+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.946616129s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.946440484s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.946358572s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.946099208s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.946039876s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.945988307s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.945222942s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.945164701s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.945113644s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","vote":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:50+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 16 โ‡ˆ 16 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.942331697s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.942271855s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.942225506s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"64989354F95D {1: โŒ˜ [64989354F95D ]}","time":"2023-09-06T10:25:50+03:30","message":"parsing Transactions message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.941541711s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.941485392s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.941438863s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","duration":"1.940757335s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","duration":"1.940707411s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","duration":"1.940662964s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","duration":"1.940394131s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","duration":"1.940346017s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","duration":"1.940295902s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","duration":"1.938908983s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","duration":"1.938851054s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","duration":"1.938801346s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 64989354F95D ๐Ÿต 5a30cbbc {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:25:50+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{โŒ˜ 17 5A30CBBCC695}","time":"2023-09-06T10:25:50+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","duration":"1.937902874s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","duration":"1.937855778s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","duration":"1.937814456s","height":17,"round":0,"target":"new-height","time":"2023-09-06T10:25:50+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:50+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:50+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PREPARE โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:50+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:50+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:50+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:50+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:50+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:50+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:50+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:50+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:50+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:51+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:51+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:51+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0/PRECOMMIT โŒ˜ 5A30CBBCC695 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:51+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:51+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:51+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:51+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:51+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","time":"2023-09-06T10:25:51+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{17/0}","time":"2023-09-06T10:25:51+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{17/0}","time":"2023-09-06T10:25:51+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","ours":0,"peer":0,"time":"2023-09-06T10:25:51+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 17/0/new-height/0}","ticker":"1.941541711s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 17/0/new-height/0}","ticker":"1.940295902s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 17/0/new-height/0}","ticker":"1.938851054s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 17/0/new-height/0}","ticker":"1.949515889s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 17/0/new-height/0}","ticker":"1.956967236s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.949466768s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 17/0/new-height/0}","ticker":"1.958291108s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.949466768s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.945164701s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.945164701s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.954944919s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 17/0/new-height/0}","ticker":"1.958298038s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.954944919s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.940346017s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.940346017s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.947976664s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.947976664s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 17/0/new-height/0}","ticker":"1.941438863s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.946039876s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.946039876s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 17/0/new-height/0}","ticker":"1.945113644s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 17/0/new-height/0}","ticker":"1.940707411s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 17/0/new-height/0}","ticker":"1.960555898s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 17/0/new-height/0}","ticker":"1.95691956s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.947930786s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.947930786s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.954900724s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.954900724s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.958200176s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.958200176s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"our turn to propose"} -{"level":"info","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.942225506s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.942225506s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.941485392s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.941485392s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.940662964s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.940662964s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.942271855s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.942271855s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.946358572s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.946358572s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.946440484s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.946440484s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","time":"2023-09-06T10:25:52+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.954996949s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.954996949s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.948034658s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.948034658s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 18/0/new-height/0}","height":18,"active":true,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.940394131s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.949384031s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"1.940394131s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:25:52+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.956870699s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.949384031s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.956870699s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.945988307s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","height":18,"active":false,"time":"2023-09-06T10:25:52+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.937814456s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","time":"2023-09-06T10:25:52+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.945988307s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.937814456s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","time":"2023-09-06T10:25:52+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.960666304s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.937902874s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.947987063s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.946099208s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.937902874s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.947987063s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.938801346s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.946099208s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.960678001s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.938801346s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.960666304s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.960678001s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.938908983s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.937855778s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.938908983s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.948103098s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.937855778s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"1.948103098s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.945222942s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"1.945222942s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.948038771s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.948038771s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/propose/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","duration":"2s","height":18,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","duration":"4s","height":18,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.946616129s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.946616129s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.940757335s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.940757335s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.942331697s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"1.942331697s@ 17/0/new-height","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"2s@ 17/0/query-proposal","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"handle ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","ticker":"4s@ 16/0/change-proposer","time":"2023-09-06T10:25:52+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"parsing Proposal message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"parsing Proposal message"} -{"level":"info","_consensus":"{pc1psgn080ye 18/0/prepare/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","proposal":"{18/0 ๐Ÿ—ƒ {โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}}","time":"2023-09-06T10:25:52+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/prepare/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PREPARE โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 17}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.947119609s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.947111948s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.947000966s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/precommit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.946488823s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.946058248s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.945964199s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.940885497s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.940826988s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.940796204s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.94077835s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.940727431s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.940679716s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:25:52+03:30","message":"new validator joined"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","block":"{โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 2ACA784042C5 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:25:52+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.925956093s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#18 โŒ˜ 42F9E1F1A247 ๐Ÿ•ฃ 10.25.52}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"sortition transaction broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.925914115s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:52+03:30","message":"set new sandbox"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.9258308s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 18/0/commit/0}","hash":"42F9E1F1A247","time":"2023-09-06T10:25:52+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.921811039s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.921687755s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.921476017s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.91814615s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.918092848s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.918046205s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","vote":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.915601117s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.915559697s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.915521881s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.914600872s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.91455366s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.914502276s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.913410673s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.913352783s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.913302004s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 17 โ‡ˆ 17 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.913223331s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.913175162s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.913131199s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"CA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"CA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txsCA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"CA240B2003DF {1: โŒ˜ [CA240B2003DF ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.90849668s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.908445129s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.908400135s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","duration":"1.907640515s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","duration":"1.907591868s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","duration":"1.907544047s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","duration":"1.906298752s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","duration":"1.906262407s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","duration":"1.906233439s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CA240B2003DF ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"5C7E9E2EBA83 {1: โŒ˜ [5C7E9E2EBA83 ]}","time":"2023-09-06T10:25:52+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","duration":"1.90055822s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","duration":"1.900493032s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","duration":"1.900442959s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C7E9E2EBA83 ๐Ÿต 42f9e1f1 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:25:52+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{โŒ˜ 18 42F9E1F1A247}","time":"2023-09-06T10:25:52+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","duration":"1.897777484s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","duration":"1.897743419s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","duration":"1.897715078s","height":18,"round":0,"target":"new-height","time":"2023-09-06T10:25:52+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:52+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:52+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0/PRECOMMIT โŒ˜ 42F9E1F1A247 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:52+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0}","time":"2023-09-06T10:25:52+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","ours":0,"peer":0,"time":"2023-09-06T10:25:52+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","time":"2023-09-06T10:25:52+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{18/0}","time":"2023-09-06T10:25:52+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0}","time":"2023-09-06T10:25:52+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{18/0}","time":"2023-09-06T10:25:52+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","ours":0,"peer":0,"time":"2023-09-06T10:25:52+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","ours":0,"peer":0,"time":"2023-09-06T10:25:52+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p54qca6v4 18/0/new-height/0}","ticker":"1.921811039s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 18/0/new-height/0}","ticker":"1.921687755s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 18/0/new-height/0}","ticker":"1.947111948s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 18/0/new-height/0}","ticker":"1.946058248s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 18/0/new-height/0}","ticker":"1.947119609s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 18/0/new-height/0}","ticker":"1.921476017s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 18/0/new-height/0}","ticker":"1.946488823s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 18/0/new-height/0}","ticker":"1.900442959s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 18/0/new-height/0}","ticker":"1.906262407s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 18/0/new-height/0}","ticker":"1.9258308s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 18/0/new-height/0}","ticker":"1.940796204s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.940826988s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.940679716s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.918092848s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.940826988s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.940679716s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.918046205s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1psgn080ye 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.947000966s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.915559697s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.947000966s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.913175162s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.915559697s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.913175162s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.913302004s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.907591868s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.918092848s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.913302004s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.897743419s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","height":19,"active":false,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.897743419s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.91455366s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.897715078s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.913352783s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.908445129s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.897715078s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.918046205s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.94077835s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.91455366s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.907640515s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.913131199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.906233439s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.94077835s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.907640515s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.908445129s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.907591868s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.906233439s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.925914115s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.90055822s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.915601117s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.90055822s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.914502276s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.913352783s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.925914115s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.913131199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.913410673s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.914502276s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.915601117s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"1.913410673s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.907544047s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 18/0/new-height/0}","ticker":"1.906298752s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.908400135s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.940727431s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.907544047s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.940885497s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.908400135s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.940727431s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"1.940885497s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","height":19,"active":true,"time":"2023-09-06T10:25:54+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.915521881s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.900493032s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:25:54+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.915521881s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.900493032s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.945964199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","time":"2023-09-06T10:25:54+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","ticker":"1.945964199s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.925956093s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.925956093s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.914600872s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.914600872s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.91814615s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"1.91814615s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 19/0/propose/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","duration":"2s","height":19,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","duration":"4s","height":19,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.90849668s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.90849668s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.897777484s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.897777484s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.913223331s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"1.913223331s@ 18/0/new-height","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"2s@ 18/0/query-proposal","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"handle ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","ticker":"4s@ 17/0/change-proposer","time":"2023-09-06T10:25:54+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"parsing Proposal message"} -{"level":"info","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","proposal":"{19/0 ๐Ÿ—ƒ {โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}}","time":"2023-09-06T10:25:54+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/prepare/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p9jkm6rms 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.931453539s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","height":19,"time":"2023-09-06T10:25:54+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.931220468s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.931138441s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.931141908s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.931034088s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 18}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/precommit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.92604418s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:25:54+03:30","message":"new validator joined"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} -{"level":"info","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","block":"{โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป B322004318D7 ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:25:54+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.91486406s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.91485211s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.914754819s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.914709674s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.914679625s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.914589768s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:54+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1psgn080ye 19/0/commit/0}","hash":"AFF0D8EAFE3A","time":"2023-09-06T10:25:54+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.913511567s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.913507897s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.913412552s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:54+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.905659003s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.905585413s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.905538159s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.904807761s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.904747653s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.904697399s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.902331222s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.90227762s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.90223193s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.900243646s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.900183103s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.900128343s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.898855228s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.89881588s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.898763324s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","vote":"{19/0/PRECOMMIT โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:54+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.894791719s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.894756615s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.894725203s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.893628359s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.893576541s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.893529731s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.892991926s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.892941786s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.892890647s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","duration":"1.889960333s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","duration":"1.889913614s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","duration":"1.889871662s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","duration":"1.887142088s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","duration":"1.887095278s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","duration":"1.887046572s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 18 โ‡ˆ 18 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.88630553s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.886252696s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.886207928s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.884990037s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.884938709s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.884895109s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.877636573s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.877584549s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.877530223s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","duration":"1.876362288s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","duration":"1.876313016s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","duration":"1.876268274s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{โŒ˜ 19 AFF0D8EAFE3A}","time":"2023-09-06T10:25:54+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","duration":"1.872193044s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","duration":"1.872158594s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","duration":"1.872129768s","height":19,"round":0,"target":"new-height","time":"2023-09-06T10:25:54+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:54+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:54+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","time":"2023-09-06T10:25:54+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:54+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:54+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:54+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:54+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:54+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:54+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:54+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:54+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:55+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:55+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:55+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0/PREPARE โŒ˜ AFF0D8EAFE3A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:55+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:55+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:55+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","time":"2023-09-06T10:25:55+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:55+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:55+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{19/0}","time":"2023-09-06T10:25:55+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{19/0}","time":"2023-09-06T10:25:55+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","ours":0,"peer":0,"time":"2023-09-06T10:25:55+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:55+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1psgn080ye 19/0/new-height/0}","ticker":"1.904807761s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","ticker":"1.877530223s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 19/0/new-height/0}","ticker":"1.91485211s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 19/0/new-height/0}","ticker":"1.91486406s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 19/0/new-height/0}","ticker":"1.914679625s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pafen0x39 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 19/0/new-height/0}","ticker":"1.889960333s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 19/0/new-height/0}","ticker":"1.892890647s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.876313016s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 19/0/new-height/0}","ticker":"1.893529731s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.876313016s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","ticker":"1.872193044s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 19/0/new-height/0}","ticker":"1.905538159s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.90227762s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.90227762s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.892991926s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.904697399s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"our turn to propose"} -{"level":"warn","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.904697399s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.884938709s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.889913614s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"warn","_consensus":"{pc1p9jkm6rms 19/0/new-height/0}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.884938709s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.889913614s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.898763324s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.889871662s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.893576541s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.898763324s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.894756615s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.889871662s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.893576541s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.894756615s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 19/0/new-height/0}","ticker":"1.89881588s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.887046572s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.894725203s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.887046572s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.894725203s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.913412552s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.913412552s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.905585413s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.904747653s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.905585413s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"warn","_state":"{#19 โŒ˜ AFF0D8EAFE3A ๐Ÿ•ฃ 10.25.54}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.886207928s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.904747653s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"warn","_consensus":"{pc1p6qk3axu7 19/0/new-height/0}","err":"certificate has an unexpected committers: [0 1 9 2 4 11 3]","time":"2023-09-06T10:25:56+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.900183103s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.900128343s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.892941786s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","ticker":"1.900183103s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.900128343s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.892941786s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","height":20,"active":true,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 19/0/new-height/0}","ticker":"1.931138441s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.886207928s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.914589768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.914589768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","height":20,"active":false,"time":"2023-09-06T10:25:56+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.892991926s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/propose/0}","proposer":"pc1p598fm5tgq6z568jzdu6w0cyv3kd7xansvm2udt","time":"2023-09-06T10:25:56+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.902331222s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.92604418s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.913507897s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.898855228s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.913507897s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.898855228s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.872158594s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.887095278s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.887095278s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.902331222s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.92604418s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.884895109s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.872129768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.876362288s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.884895109s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.876362288s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.872158594s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","time":"2023-09-06T10:25:56+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.90223193s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.877584549s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.893628359s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.88630553s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.893628359s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.90223193s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.877584549s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.88630553s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.884990037s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.887142088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.876268274s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.887142088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.872129768s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.877636573s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.876268274s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.913511567s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.877636573s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.931453539s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"1.913511567s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.914754819s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"1.931453539s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.886252696s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"1.884990037s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931141908s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.886252696s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931141908s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931220468s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"1.931220468s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.931034088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","ticker":"1.914754819s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.931034088s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 20/0/propose/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","duration":"2s","height":20,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","duration":"4s","height":20,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.914709674s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.914709674s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.900243646s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.900243646s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.894791719s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.894791719s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.905659003s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"1.905659003s@ 19/0/new-height","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","ticker":"2s@ 19/0/query-proposal","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","ticker":"4s@ 18/0/change-proposer","time":"2023-09-06T10:25:56+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","proposal":"{20/0 ๐Ÿ—ƒ {โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:56+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/prepare/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.92403074s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.924017738s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.923902539s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.917026763s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.917014085s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.916915931s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.915548132s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.915489333s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.915437849s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 19}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/precommit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_consensus":"{pc1p54qca6v4 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.905855394s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.905843083s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.905801502s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.905825972s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.905754428s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.905706348s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.90423166s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.904162697s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.904168596s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.904114313s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.90407657s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.90401523s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#20 โŒ˜ 3DB4CCE54F00 ๐Ÿ•ฃ 10.25.56}","block":"{โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p598fm5tg ๐Ÿ’ป E66B60A79001 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:56+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:56+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 20/0/commit/0}","hash":"3DB4CCE54F00","time":"2023-09-06T10:25:56+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.900663987s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.900649011s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.900551398s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","duration":"1.899207799s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","duration":"1.899151464s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","duration":"1.899129829s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","duration":"1.899104467s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","duration":"1.899073286s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","duration":"1.899024116s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.89240406s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.892364205s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.892332381s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.891923634s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.89189026s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.891862544s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","duration":"1.891472912s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","duration":"1.891442888s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","duration":"1.891415729s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","vote":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:56+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 19 โ‡ˆ 19 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.888217793s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.888169597s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.888110754s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.887663623s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.887615999s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.887568579s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{โŒ˜ 20 3DB4CCE54F00}","time":"2023-09-06T10:25:56+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","duration":"1.886942486s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","duration":"1.886897829s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","duration":"1.886858732s","height":20,"round":0,"target":"new-height","time":"2023-09-06T10:25:56+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:56+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:56+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PREPARE โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:56+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:56+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:56+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:56+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:56+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:56+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:56+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:56+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:56+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:25:56+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:57+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:57+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:57+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0/PRECOMMIT โŒ˜ 3DB4CCE54F00 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:57+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:57+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:57+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:57+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:57+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","time":"2023-09-06T10:25:57+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{20/0}","time":"2023-09-06T10:25:57+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{20/0}","time":"2023-09-06T10:25:57+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","ours":0,"peer":0,"time":"2023-09-06T10:25:57+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 20/0/new-height/0}","ticker":"1.900663987s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 20/0/new-height/0}","ticker":"1.899207799s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 20/0/new-height/0}","ticker":"1.900649011s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 20/0/new-height/0}","ticker":"1.90407657s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 20/0/new-height/0}","ticker":"1.905801502s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 20/0/new-height/0}","ticker":"1.888110754s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 20/0/new-height/0}","ticker":"1.905843083s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 20/0/new-height/0}","ticker":"1.90401523s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 20/0/new-height/0}","ticker":"1.892332381s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 20/0/new-height/0}","ticker":"1.892364205s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 20/0/new-height/0}","ticker":"1.899129829s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.923902539s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.923902539s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 20/0/new-height/0}","ticker":"1.904114313s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.899024116s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.924017738s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.899024116s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.924017738s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.915437849s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.915437849s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.899073286s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.899073286s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.915489333s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.915489333s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1pafen0x39 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.891442888s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.891442888s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.89189026s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.905855394s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.89189026s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.905855394s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.905825972s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.90423166s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.905825972s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.916915931s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.904162697s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.90423166s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.916915931s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.904162697s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.917026763s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.905706348s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"1.917026763s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.905706348s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.905754428s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891415729s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.917014085s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.905754428s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891415729s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.917014085s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.899104467s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891862544s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.899151464s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.899104467s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"1.891862544s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"1.899151464s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891472912s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891472912s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","height":21,"active":false,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.89240406s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.89240406s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.886897829s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.886897829s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891923634s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"1.891923634s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.887615999s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.887615999s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.888169597s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","time":"2023-09-06T10:25:58+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.886942486s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.888169597s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.886942486s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 21/0/new-height/0}","height":21,"active":true,"time":"2023-09-06T10:25:58+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.886858732s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.886858732s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.888217793s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 21/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:25:58+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.888217793s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.887568579s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.887568579s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.887663623s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.900551398s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"1.887663623s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"1.900551398s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","ticker":"2s@ 20/0/query-proposal","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 21/0/propose/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","duration":"2s","height":21,"round":0,"target":"query-proposal","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","duration":"4s","height":21,"round":0,"target":"change-proposer","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.915548132s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.915548132s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.904168596s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.904168596s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.92403074s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"1.92403074s@ 20/0/new-height","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","ticker":"4s@ 19/0/change-proposer","time":"2023-09-06T10:25:58+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","proposal":"{21/0 ๐Ÿ—ƒ {โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}}","time":"2023-09-06T10:25:58+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/prepare/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.918918162s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.918710424s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.918611908s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 20}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.910729148s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.91070253s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.910601827s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.909373175s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.909317422s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.909270126s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","block":"{โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป 9C2629DE3906 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:25:58+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.907081417s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:58+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.90650096s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.906496628s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.906403989s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:25:58+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.905795573s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.905735171s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.905637086s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.905001072s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.904953622s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.904911643s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/precommit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#21 โŒ˜ 4739960F67BB ๐Ÿ•ฃ 10.25.58}","height":21,"time":"2023-09-06T10:25:58+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 21/0/commit/0}","hash":"4739960F67BB","time":"2023-09-06T10:25:58+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.904355925s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.904267888s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.904350598s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.904172354s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.904114363s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:58+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","duration":"1.90295169s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","duration":"1.90290214s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","duration":"1.902853085s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:58+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","vote":"{21/0/PRECOMMIT โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:25:58+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.894556655s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.894518906s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.894489772s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.894002662s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.893968432s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.893922307s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.893563589s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.893507722s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.893461475s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","duration":"1.893451558s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","duration":"1.893402595s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","duration":"1.893356916s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.892779833s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.892730436s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.892685522s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"165DDBC5495B {1: โŒ˜ [165DDBC5495B ]}","time":"2023-09-06T10:25:58+03:30","message":"parsing Transactions message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.891993165s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.891940592s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.891895029s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","duration":"1.891217402s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","duration":"1.891169004s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","duration":"1.891125239s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 165DDBC5495B ๐Ÿต 4739960f {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:25:58+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 20 โ‡ˆ 20 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.889000959s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.88896733s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.88893899s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.888534741s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.888501707s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.888474526s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.88808506s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.888054572s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.888027704s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{โŒ˜ 21 4739960F67BB}","time":"2023-09-06T10:25:58+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","duration":"1.887639324s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","duration":"1.88760905s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","duration":"1.887580044s","height":21,"round":0,"target":"new-height","time":"2023-09-06T10:25:58+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:25:59+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0/PREPARE โŒ˜ 4739960F67BB ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:25:59+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","time":"2023-09-06T10:25:59+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0}","time":"2023-09-06T10:25:59+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","ours":0,"peer":0,"time":"2023-09-06T10:25:59+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0}","time":"2023-09-06T10:25:59+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","ours":0,"peer":0,"time":"2023-09-06T10:25:59+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{21/0}","time":"2023-09-06T10:25:59+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{21/0}","time":"2023-09-06T10:25:59+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","ours":0,"peer":0,"time":"2023-09-06T10:25:59+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 21/0/new-height/0}","ticker":"1.904355925s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 21/0/new-height/0}","ticker":"1.91070253s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 21/0/new-height/0}","ticker":"1.894489772s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 21/0/new-height/0}","ticker":"1.918710424s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 21/0/new-height/0}","ticker":"1.90650096s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 21/0/new-height/0}","ticker":"1.906496628s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 21/0/new-height/0}","ticker":"1.891125239s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.893507722s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 21/0/new-height/0}","ticker":"1.88893899s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 21/0/new-height/0}","ticker":"1.892779833s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.893507722s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.909317422s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 21/0/new-height/0}","ticker":"1.918918162s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.909317422s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 21/0/new-height/0}","ticker":"1.918611908s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 21/0/new-height/0}","ticker":"1.893451558s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.904953622s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891940592s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.904953622s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891940592s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.90290214s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891169004s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.90290214s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.891169004s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.892730436s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.892730436s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.905735171s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.905735171s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893356916s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893356916s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893922307s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.893922307s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904172354s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904172354s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894002662s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904114363s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894002662s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.904114363s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893402595s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894556655s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893402595s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.894556655s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.910601827s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.907081417s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.910601827s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.910729148s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.907081417s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.894518906s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.892685522s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.910729148s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.892685522s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.894518906s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891993165s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891993165s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893968432s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.891895029s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891217402s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.891895029s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.891217402s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.893461475s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.893968432s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.893563589s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"1.893461475s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.904350598s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"1.904350598s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","height":22,"active":false,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"1.893563589s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.904267888s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.909270126s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","time":"2023-09-06T10:26:00+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.88808506s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"1.904267888s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.909270126s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888054572s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.909373175s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.88808506s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","height":22,"active":true,"time":"2023-09-06T10:26:00+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.887639324s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:00+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.887639324s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.909373175s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.905637086s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.905637086s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.90295169s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.889000959s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.90295169s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.889000959s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.904911643s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888054572s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905001072s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905001072s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.904911643s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888501707s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.888501707s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.902853085s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88760905s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.902853085s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.888534741s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88760905s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"1.888534741s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88896733s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905795573s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.88896733s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"1.905795573s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/propose/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","duration":"2s","height":22,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","duration":"4s","height":22,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888027704s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888027704s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.887580044s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.887580044s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888474526s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.888474526s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.906403989s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"1.906403989s@ 21/0/new-height","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"4s@ 20/0/change-proposer","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","ticker":"2s@ 21/0/query-proposal","time":"2023-09-06T10:26:00+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"parsing Proposal message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","proposal":"{22/0 ๐Ÿ—ƒ {โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:00+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/prepare/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.909671941s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.909624918s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.909506968s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PREPARE โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 21}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.891322911s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.89116431s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/precommit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","height":22,"time":"2023-09-06T10:26:00+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.887796584s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.88778906s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.887666039s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.887657597s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p598fm5tg 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.881699476s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.881690773s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.881577412s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.880200474s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.880132473s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.880078078s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.87621614s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.876160925s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.876091441s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:00+03:30","message":"new validator joined"} -{"level":"info","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","block":"{โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป B38DCAB9A949 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:00+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.872968593s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.872916378s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.872865154s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:00+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 22/0/commit/0}","hash":"7DB11BF30CB5","time":"2023-09-06T10:26:00+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.872191604s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.872184857s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.872069877s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.869944073s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.869892139s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.869849375s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.866956622s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.866909653s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.866870288s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","duration":"1.866594739s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","duration":"1.866533709s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","duration":"1.866485601s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.865193293s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.865135592s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.865085629s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p598fm5tg}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","duration":"1.863199508s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","duration":"1.863144261s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","duration":"1.863097565s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","vote":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:00+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.856907547s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.856868659s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.856837931s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 21 โ‡ˆ 21 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.855819775s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.85576971s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.855719948s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.853977443s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.853937332s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.853907771s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"87A9C040F905 {1: โŒ˜ [87A9C040F905 ]}","time":"2023-09-06T10:26:00+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","duration":"1.851307699s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","duration":"1.851274978s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","duration":"1.851246742s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","time":"2023-09-06T10:26:00+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.845810895s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.845747456s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.845703104s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.842984481s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.842948008s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.842918109s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{โŒ˜ 22 7DB11BF30CB5}","time":"2023-09-06T10:26:00+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","duration":"1.840332772s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","duration":"1.840298345s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","duration":"1.840259901s","height":22,"round":0,"target":"new-height","time":"2023-09-06T10:26:00+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:00+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:00+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:00+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:00+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:00+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:00+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:00+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:00+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:00+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:00+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:00+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:01+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:01+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:01+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0/PRECOMMIT โŒ˜ 7DB11BF30CB5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:01+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:01+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:01+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","time":"2023-09-06T10:26:01+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:01+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:01+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{22/0}","time":"2023-09-06T10:26:01+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{22/0}","time":"2023-09-06T10:26:01+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","ours":0,"peer":0,"time":"2023-09-06T10:26:01+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","ticker":"1.881699476s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","ticker":"1.887657597s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 22/0/new-height/0}","ticker":"1.89116431s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","ticker":"1.881690773s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 22/0/new-height/0}","ticker":"1.866485601s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p598fm5tg 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} -{"level":"warn","_consensus":"{pc1p9jkm6rms 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p24snhmkw 22/0/new-height/0}","ticker":"1.853907771s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","ticker":"1.842918109s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 22/0/new-height/0}","ticker":"1.87621614s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 22/0/new-height/0}","ticker":"1.909624918s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 22/0/new-height/0}","ticker":"1.85576971s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","ticker":"1.872191604s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} -{"level":"warn","_consensus":"{pc1ppqfxuy3h 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} -{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"warn","_consensus":"{pc1psgn080ye 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} -{"level":"warn","_consensus":"{pc1p38j3r9xm 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","ticker":"1.88778906s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.856907547s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} -{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.856907547s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.863144261s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"warn","_consensus":"{pc1p6qk3axu7 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.866870288s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.863144261s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.865193293s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.909506968s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.865193293s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","height":23,"active":false,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"warn","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.909506968s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.876160925s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"warn","_consensus":"{pc1p54qca6v4 22/0/new-height/0}","err":"certificate has an unexpected committers: [1 7 9 2 4 11 3]","time":"2023-09-06T10:26:02+03:30","message":"updating last certificate failed"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.876160925s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.845747456s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.866870288s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"our turn to propose"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.881577412s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.866533709s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.869849375s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.876091441s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.853977443s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.866533709s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","height":23,"active":true,"time":"2023-09-06T10:26:02+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.853977443s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.876091441s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.869849375s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.845747456s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.880132473s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.865135592s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.880132473s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.842948008s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.863097565s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.872865154s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.863097565s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.872916378s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.872916378s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.872865154s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.851307699s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.869892139s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.887796584s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/propose/0}","proposer":"pc1p6qk3axu74z7syp75z9uzv32rrx98zl28lhuvcx","time":"2023-09-06T10:26:02+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.881577412s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.869892139s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"1.887796584s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.880078078s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.865135592s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.865085629s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","ticker":"1.880078078s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.842948008s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.865085629s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.856868659s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.840298345s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.856868659s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.851246742s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.866909653s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.842984481s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.840298345s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.851246742s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.840259901s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.866909653s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.842984481s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.872184857s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.856837931s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.840259901s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.872184857s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","time":"2023-09-06T10:26:02+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.853937332s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.851307699s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.840332772s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.887666039s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.855719948s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.853937332s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.887666039s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.840332772s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.856837931s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.866594739s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.855719948s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.866594739s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.855819775s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.845703104s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.851274978s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.872968593s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.845703104s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"1.851274978s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.872968593s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.872069877s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.855819775s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.909671941s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"1.872069877s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.909671941s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.845810895s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.880200474s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"1.845810895s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"1.880200474s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#22 โŒ˜ 7DB11BF30CB5 ๐Ÿ•ฃ 10.26.00}","tx":"{โŒ˜ 87A9C040F905 ๐Ÿต 7db11bf3 {Sortition ๐ŸŽฏ pc1p9jkm6rms}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:02+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/propose/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","duration":"2s","height":23,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","duration":"4s","height":23,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.863199508s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.863199508s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.869944073s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.869944073s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.866956622s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.866956622s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.891322911s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"1.891322911s@ 22/0/new-height","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","ticker":"4s@ 21/0/change-proposer","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1psgn080ye 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","ticker":"2s@ 22/0/query-proposal","time":"2023-09-06T10:26:02+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","proposal":"{23/0 ๐Ÿ—ƒ {โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:02+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/prepare/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.928174851s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.92812859s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.928021089s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.914860745s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.914773507s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.913614653s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.913576714s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.913545511s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 22}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","height":23,"time":"2023-09-06T10:26:02+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.912304936s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.912296202s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.912205053s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.912175483s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.910601094s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.910547538s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.91049978s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.909230475s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.909218941s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.909128544s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.908069376s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.908020272s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.907968968s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","block":"{โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p6qk3axu7 ๐Ÿ’ป 324232B0E423 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:02+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:02+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.899614145s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.899453803s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.898427593s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.898438966s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.89836638s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.89835129s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.898318333s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.898306182s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.897675623s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.897620219s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.897570088s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/precommit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#23 โŒ˜ 382D31446159 ๐Ÿ•ฃ 10.26.02}","height":23,"time":"2023-09-06T10:26:02+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 23/0/commit/0}","hash":"382D31446159","time":"2023-09-06T10:26:02+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.897259339s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.897249744s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.897161567s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.897121113s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.896918051s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.896862355s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.896807668s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_consensus":"{pc1psgn080ye 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","duration":"1.895899464s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","duration":"1.895861156s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","duration":"1.895812248s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","duration":"1.895734291s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","duration":"1.895680349s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","duration":"1.895630218s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.893282214s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.893245276s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.893215755s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.892824689s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.892792915s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.892764194s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.892380025s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.892350388s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.892313387s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","vote":"{23/0/PRECOMMIT โŒ˜ 382D31446159 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:02+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.891903596s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.891871885s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 22 โ‡ˆ 22 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.891843403s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.891834252s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.891784375s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.891753956s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","duration":"1.891458438s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","duration":"1.891426559s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","duration":"1.891399081s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.891137932s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.891082565s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.891047292s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.890571052s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.890523186s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.890486361s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{โŒ˜ 23 382D31446159}","time":"2023-09-06T10:26:02+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","duration":"1.889876535s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","duration":"1.889831297s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","duration":"1.889793424s","height":23,"round":0,"target":"new-height","time":"2023-09-06T10:26:02+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:02+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:02+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0/PREPARE โŒ˜ 382D31446159 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:02+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","time":"2023-09-06T10:26:02+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0}","time":"2023-09-06T10:26:02+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","ours":0,"peer":0,"time":"2023-09-06T10:26:02+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{23/0}","time":"2023-09-06T10:26:02+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0}","time":"2023-09-06T10:26:02+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{23/0}","time":"2023-09-06T10:26:02+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","ours":0,"peer":0,"time":"2023-09-06T10:26:02+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","ours":0,"peer":0,"time":"2023-09-06T10:26:02+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 23/0/new-height/0}","ticker":"1.912304936s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 23/0/new-height/0}","ticker":"1.897259339s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 23/0/new-height/0}","ticker":"1.910601094s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 23/0/new-height/0}","ticker":"1.928021089s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 23/0/new-height/0}","ticker":"1.913576714s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 23/0/new-height/0}","ticker":"1.909230475s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 23/0/new-height/0}","ticker":"1.892792915s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 23/0/new-height/0}","ticker":"1.914773507s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.91049978s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 23/0/new-height/0}","ticker":"1.897161567s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.91049978s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 23/0/new-height/0}","ticker":"1.891137932s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.913545511s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.913614653s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.913545511s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.913614653s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 23/0/new-height/0}","ticker":"1.914860745s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.895812248s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.92812859s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.895812248s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.92812859s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.907968968s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.895899464s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 23/0/new-height/0}","ticker":"1.909128544s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.907968968s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.895899464s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.908069376s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.898318333s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.908069376s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.898318333s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.898427593s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.898427593s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.895680349s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.895680349s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.896862355s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.896862355s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.912175483s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.912205053s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.912175483s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.912205053s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.895630218s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.897620219s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.897620219s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.895630218s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.89835129s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.895734291s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.895734291s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.89835129s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.896918051s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.897570088s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.896918051s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.897570088s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.896807668s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.912296202s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.912296202s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pafen0x39 24/0/new-height/0}","height":24,"active":false,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.896807668s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891784375s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891426559s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.898306182s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891426559s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"1.898306182s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891784375s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.892350388s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.890523186s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.892350388s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891871885s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.891871885s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.893245276s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891458438s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.897675623s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891458438s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.897675623s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.890571052s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891753956s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891903596s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.898438966s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891753956s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.890571052s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.891903596s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.893245276s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"1.898438966s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.889793424s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892380025s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.890523186s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.909218941s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.889793424s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892380025s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.909218941s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.890486361s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.889831297s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892824689s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","time":"2023-09-06T10:26:04+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.890486361s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.889831297s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.892824689s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891047292s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.893215755s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.893282214s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891082565s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.891047292s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","height":24,"active":true,"time":"2023-09-06T10:26:04+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"1.893282214s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.891082565s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.893215755s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.897121113s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.889876535s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"1.897121113s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:04+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891843403s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.899453803s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891843403s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.889876535s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.899453803s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891399081s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.891399081s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.891834252s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892764194s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.891834252s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892764194s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.899614145s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892313387s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.899614145s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"1.892313387s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.897249744s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"1.897249744s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/propose/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","duration":"2s","height":24,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","duration":"4s","height":24,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"2s@ 23/0/query-proposal","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.910547538s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.910547538s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.908020272s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.908020272s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.89836638s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.89836638s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.895861156s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.895861156s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.928174851s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"1.928174851s@ 23/0/new-height","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","ticker":"4s@ 22/0/change-proposer","time":"2023-09-06T10:26:04+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"parsing Proposal message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","proposal":"{24/0 ๐Ÿ—ƒ {โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:04+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/prepare/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PREPARE โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.911241318s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.911227212s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.91112513s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 23}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.899379774s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.899364958s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.899268958s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.893902496s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.893859927s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.893829373s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p54qca6v4 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.891678041s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.891576898s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","address":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","power":1000000,"time":"2023-09-06T10:26:04+03:30","message":"new validator joined"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","block":"{โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป F2302A4BDAFB ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:04+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:04+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.88890026s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.88888919s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.88880088s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/precommit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#24 โŒ˜ ABE076F876E0 ๐Ÿ•ฃ 10.26.04}","height":24,"time":"2023-09-06T10:26:04+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 24/0/commit/0}","hash":"ABE076F876E0","time":"2023-09-06T10:26:04+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.888156215s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.888148174s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.888055244s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"parsing Transactions message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.887882762s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:04+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.883348066s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.883294141s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.883248397s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.881560077s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.881511514s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.88146794s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.878793877s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.878758611s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.878710812s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.878281131s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.878224855s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.878175787s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","duration":"1.875810172s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","duration":"1.875773901s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","duration":"1.875745569s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.874723523s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.874675415s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.874624748s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","vote":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:04+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"1A1CE8FB8A9B {1: โŒ˜ [1A1CE8FB8A9B ]}","time":"2023-09-06T10:26:04+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.870494717s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.870442644s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.870387548s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 23 โ‡ˆ 23 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.869545707s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.869494991s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A1CE8FB8A9B ๐Ÿต abe076f8 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:04+03:30","message":"transaction appended into pool"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.869450599s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.866110832s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.86606402s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.866012529s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.865776353s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.865725277s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.865677631s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.864824948s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.864768437s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.864722377s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","duration":"1.862977729s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","duration":"1.862930767s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","duration":"1.862880011s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","duration":"1.861074762s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","duration":"1.861022755s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","duration":"1.860977517s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{โŒ˜ 24 ABE076F876E0}","time":"2023-09-06T10:26:04+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","duration":"1.860257354s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","duration":"1.860213542s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","duration":"1.860173926s","height":24,"round":0,"target":"new-height","time":"2023-09-06T10:26:04+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:04+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:04+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","time":"2023-09-06T10:26:04+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:04+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:04+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:04+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:04+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:04+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:04+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:04+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:04+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:05+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:05+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0/PRECOMMIT โŒ˜ ABE076F876E0 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:05+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","time":"2023-09-06T10:26:05+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:05+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:05+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:05+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:05+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:05+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{24/0}","time":"2023-09-06T10:26:05+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{24/0}","time":"2023-09-06T10:26:05+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","ours":0,"peer":0,"time":"2023-09-06T10:26:05+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:05+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 24/0/new-height/0}","ticker":"1.899379774s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 24/0/new-height/0}","ticker":"1.911227212s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 24/0/new-height/0}","ticker":"1.883248397s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 24/0/new-height/0}","ticker":"1.862977729s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 24/0/new-height/0}","ticker":"1.891678041s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 24/0/new-height/0}","ticker":"1.864768437s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 24/0/new-height/0}","ticker":"1.881511514s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 24/0/new-height/0}","ticker":"1.862880011s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 24/0/new-height/0}","ticker":"1.91112513s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.893902496s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 24/0/new-height/0}","ticker":"1.888156215s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.893902496s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 24/0/new-height/0}","ticker":"1.862930767s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.888055244s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.878793877s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.888055244s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 24/0/new-height/0}","ticker":"1.870442644s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.878793877s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.891576898s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.875810172s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.891576898s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.875810172s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.869494991s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.881560077s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.869494991s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.881560077s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.860213542s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.860213542s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.88890026s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.88890026s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.86606402s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.878281131s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.86606402s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.878281131s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.878224855s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.874723523s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.878224855s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.866012529s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.874723523s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.866012529s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.888148174s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.866110832s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.874624748s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.88888919s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"1.866110832s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.888148174s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.874624748s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.88888919s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.860257354s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.874675415s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.88880088s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.860257354s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.874675415s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.88880088s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.869545707s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.878175787s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"1.878175787s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.869545707s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.864824948s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"1.864824948s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.865725277s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.865725277s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","height":25,"active":true,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.861022755s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","height":25,"active":false,"time":"2023-09-06T10:26:06+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.861022755s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.883348066s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:06+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.893829373s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.883348066s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.883294141s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.893829373s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.861074762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.883294141s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.861074762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.875745569s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.899364958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","time":"2023-09-06T10:26:06+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.865677631s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.870494717s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.875745569s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.865677631s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.870494717s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.911241318s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.88146794s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.899364958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.860977517s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.911241318s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.865776353s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.88146794s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.860977517s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"1.865776353s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.893859927s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.878710812s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.870387548s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.893859927s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.870387548s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.878710812s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.875773901s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.899268958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.875773901s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"1.899268958s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.878758611s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"1.878758611s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/propose/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","duration":"2s","height":25,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","duration":"4s","height":25,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.860173926s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.860173926s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.869450599s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.869450599s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.864722377s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.864722377s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.887882762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"1.887882762s@ 24/0/new-height","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"4s@ 23/0/change-proposer","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","ticker":"2s@ 24/0/query-proposal","time":"2023-09-06T10:26:06+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1psgn080ye 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","proposal":"{25/0 ๐Ÿ—ƒ {โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:06+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/prepare/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PREPARE โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.909029454s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.909015742s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.908969579s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.908903743s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.908948159s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.908843345s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 24}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.901009439s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.90095397s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.900910265s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.893592006s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.893507705s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/precommit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","height":25,"time":"2023-09-06T10:26:06+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.891162446s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.891116413s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.891024848s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.891019599s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:06+03:30","message":"new validator joined"} -{"level":"info","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","block":"{โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 95EAD8D485AD ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:06+03:30","message":"new block committed"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:06+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 25/0/commit/0}","hash":"BA1FC808B73A","time":"2023-09-06T10:26:06+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.889053053s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.889041289s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.888947313s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.887795843s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.887742148s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.887694297s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.883372385s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.883335664s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.883305526s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.880576023s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.880527908s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.880474032s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","vote":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:06+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.87846312s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.878425979s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.87837619s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","duration":"1.877074248s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","duration":"1.877026535s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","duration":"1.876979376s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.875706405s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.875671359s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.875623827s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.87498776s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.874935473s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.874889836s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 24 โ‡ˆ 24 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.874015646s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.873964615s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.873919163s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","duration":"1.872361407s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","duration":"1.872315408s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","duration":"1.872260464s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.870250554s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.870199184s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.870154111s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.86929115s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.869240847s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.869195504s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","duration":"1.865525875s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","duration":"1.865475577s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","duration":"1.865431591s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"93FDBF2A3DA4 {1: โŒ˜ [93FDBF2A3DA4 ]}","time":"2023-09-06T10:26:06+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:06+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.860378285s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.860343099s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.860314133s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{โŒ˜ 25 BA1FC808B73A}","time":"2023-09-06T10:26:06+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","duration":"1.857705187s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","duration":"1.857670083s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","duration":"1.857620981s","height":25,"round":0,"target":"new-height","time":"2023-09-06T10:26:06+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:06+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:06+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:06+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:06+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:06+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:06+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:06+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:06+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:06+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:06+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:06+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:06+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:07+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:07+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:07+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0/PRECOMMIT โŒ˜ BA1FC808B73A ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:07+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","time":"2023-09-06T10:26:07+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:07+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:07+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:07+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:07+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{25/0}","time":"2023-09-06T10:26:07+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{25/0}","time":"2023-09-06T10:26:07+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","ours":0,"peer":0,"time":"2023-09-06T10:26:07+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p598fm5tg 25/0/new-height/0}","ticker":"1.901009439s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 25/0/new-height/0}","ticker":"1.889053053s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 25/0/new-height/0}","ticker":"1.889041289s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 25/0/new-height/0}","ticker":"1.883305526s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 25/0/new-height/0}","ticker":"1.891024848s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 25/0/new-height/0}","ticker":"1.891019599s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 25/0/new-height/0}","ticker":"1.872361407s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 25/0/new-height/0}","ticker":"1.887795843s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 25/0/new-height/0}","ticker":"1.909015742s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 25/0/new-height/0}","ticker":"1.908969579s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 25/0/new-height/0}","ticker":"1.865431591s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.877074248s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 25/0/new-height/0}","ticker":"1.888947313s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.877074248s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.908843345s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.908948159s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.908843345s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.870199184s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.908948159s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.870199184s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.880474032s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.883372385s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.865475577s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.880474032s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.883372385s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.865475577s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.880576023s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.900910265s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.880576023s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.900910265s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.874935473s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.874935473s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.876979376s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.876979376s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.887742148s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.887742148s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.860343099s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.860343099s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.873964615s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.857705187s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.857705187s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.873964615s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.860378285s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.857670083s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.860378285s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.857670083s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.874015646s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.869240847s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.874015646s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.860314133s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.869240847s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.86929115s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.860314133s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"1.86929115s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.857620981s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.857620981s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.869195504s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.869195504s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.873919163s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"1.873919163s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","height":26,"active":false,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.893507705s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.893507705s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.878425979s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.878425979s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.891162446s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.872315408s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.891162446s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.872315408s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.90095397s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.87837619s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.875671359s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.891116413s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.90095397s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.87837619s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.875671359s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.891116413s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.877026535s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.875706405s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.877026535s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.875706405s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.883335664s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.893592006s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.872260464s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.893592006s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.883335664s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.872260464s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.87846312s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.880527908s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"1.87846312s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.875623827s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"1.880527908s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"1.875623827s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#25 โŒ˜ BA1FC808B73A ๐Ÿ•ฃ 10.26.06}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:08+03:30","message":"found invalid transaction"} -{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","height":26,"active":true,"time":"2023-09-06T10:26:08+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:08+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","time":"2023-09-06T10:26:08+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.874889836s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.874889836s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.870154111s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.870154111s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 26/0/propose/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.887694297s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","duration":"2s","height":26,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.887694297s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","duration":"4s","height":26,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.908903743s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"1.908903743s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.870250554s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.870250554s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.865525875s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.865525875s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.87498776s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.87498776s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.909029454s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"1.909029454s@ 25/0/new-height","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1psgn080ye 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","ticker":"2s@ 25/0/query-proposal","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","ticker":"4s@ 24/0/change-proposer","time":"2023-09-06T10:26:08+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","proposal":"{26/0 ๐Ÿ—ƒ {โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:08+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/prepare/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 25}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.919670045s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.919645157s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.919529281s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} -{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1psgn080ye 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.911830186s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.911818741s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.911723441s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.910212582s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","block":"{โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 6F8622976C4A ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:08+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.910154726s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.910100666s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:08+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6qk3axu7 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.907730795s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.907630092s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.905763579s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.905756311s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.90565384s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/precommit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","height":26,"time":"2023-09-06T10:26:08+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 26/0/commit/0}","hash":"5C0FEFA057F1","time":"2023-09-06T10:26:08+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.904902864s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.904894753s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.904804559s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.904663758s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:08+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:08+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_consensus":"{pc1psgn080ye 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.900290137s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.900240533s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.900190235s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.899711471s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.899658851s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.899610032s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","duration":"1.898991005s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","duration":"1.89894473s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","duration":"1.898891636s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:08+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.896311462s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.896255293s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.89620771s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","vote":"{26/0/PRECOMMIT โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:08+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.894668933s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.894617552s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.894572124s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 25 โ‡ˆ 25 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.894384334s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.894329547s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.894278918s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.893879696s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.89382949s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.893785046s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.893644127s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.893589991s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.893533288s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","duration":"1.892924243s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","duration":"1.892872193s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","duration":"1.892824409s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"0D3AB77B4826 {1: โŒ˜ [0D3AB77B4826 ]}","time":"2023-09-06T10:26:08+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.887490609s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.887434911s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.887389449s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.886710809s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.886661159s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.886608883s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","duration":"1.885929925s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","duration":"1.885879137s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","duration":"1.885836005s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:08+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.88535947s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.885324433s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.885296204s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{โŒ˜ 26 5C0FEFA057F1}","time":"2023-09-06T10:26:08+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","duration":"1.88491121s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","duration":"1.884880098s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","duration":"1.884853193s","height":26,"round":0,"target":"new-height","time":"2023-09-06T10:26:08+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0/PREPARE โŒ˜ 5C0FEFA057F1 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:09+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:09+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","time":"2023-09-06T10:26:09+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","time":"2023-09-06T10:26:09+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","time":"2023-09-06T10:26:09+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0}","time":"2023-09-06T10:26:09+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","ours":0,"peer":0,"time":"2023-09-06T10:26:09+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0}","time":"2023-09-06T10:26:09+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{26/0}","time":"2023-09-06T10:26:09+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","ours":0,"peer":0,"time":"2023-09-06T10:26:09+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{26/0}","time":"2023-09-06T10:26:09+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","ours":0,"peer":0,"time":"2023-09-06T10:26:09+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 26/0/new-height/0}","ticker":"1.904894753s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 26/0/new-height/0}","ticker":"1.907630092s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 26/0/new-height/0}","ticker":"1.892824409s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 26/0/new-height/0}","ticker":"1.919645157s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 26/0/new-height/0}","ticker":"1.911830186s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 26/0/new-height/0}","ticker":"1.910100666s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 26/0/new-height/0}","ticker":"1.910154726s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 26/0/new-height/0}","ticker":"1.885296204s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.904804559s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.910212582s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.904804559s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.910212582s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 26/0/new-height/0}","ticker":"1.886661159s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.892872193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.898991005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.892872193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.898991005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 26/0/new-height/0}","ticker":"1.905763579s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.893589991s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.899711471s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.898891636s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.899711471s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.898891636s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.899610032s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.900290137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.899610032s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 26/0/new-height/0}","ticker":"1.89382949s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.900290137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 26/0/new-height/0}","ticker":"1.89620771s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.893589991s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.900190235s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.900190235s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.894329547s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.894329547s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.919529281s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.919529281s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.893644127s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.893644127s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.907730795s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.907730795s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904663758s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.894384334s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904663758s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.894384334s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.893533288s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.892924243s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.893533288s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"1.892924243s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.894617552s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.894278918s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.894617552s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.90565384s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.894278918s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.90565384s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.905756311s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904902864s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.905756311s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"1.904902864s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.885324433s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.884853193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88535947s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.885324433s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.884853193s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88535947s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.884880098s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.893785046s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.894668933s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.884880098s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.893785046s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.894668933s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.894572124s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.893879696s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"1.894572124s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.893879696s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88491121s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"1.88491121s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","height":27,"active":false,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.885879137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.885879137s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.887434911s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.887434911s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.896255293s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.896255293s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.911818741s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.911818741s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.89894473s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.89894473s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.900240533s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.900240533s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.899658851s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.899658851s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.919670045s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"1.919670045s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","tx":"{โŒ˜ 93FDBF2A3DA4 ๐Ÿต ba1fc808 {Sortition ๐ŸŽฏ pc1pg3yhezax}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:10+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#26 โŒ˜ 5C0FEFA057F1 ๐Ÿ•ฃ 10.26.08}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:10+03:30","message":"found invalid transaction"} -{"level":"info","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","height":27,"active":true,"time":"2023-09-06T10:26:10+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/propose/0}","proposer":"pc1psgn080ye2dqyf7fqae5mjpt2gsrr5jg70uv2c9","time":"2023-09-06T10:26:10+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","time":"2023-09-06T10:26:10+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.886608883s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.886608883s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.911723441s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 27/0/propose/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.911723441s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","duration":"2s","height":27,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","duration":"4s","height":27,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.885929925s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.885929925s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.886710809s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.886710809s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.896311462s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.896311462s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.887490609s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"1.887490609s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.885836005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.885836005s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.887389449s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"1.887389449s@ 26/0/new-height","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"4s@ 25/0/change-proposer","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","ticker":"2s@ 26/0/query-proposal","time":"2023-09-06T10:26:10+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","proposal":"{27/0 ๐Ÿ—ƒ {โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:10+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/prepare/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.922513945s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.92243684s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.922337703s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1psgn080ye 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.913980949s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.913943486s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.913848162s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.912485328s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.912437014s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.912395662s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 26}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.897584199s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.897543953s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.89750599s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6qk3axu7 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.890158105s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.89004168s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","block":"{โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1psgn080ye ๐Ÿ’ป A7D40C709239 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:10+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:10+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/precommit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} -{"level":"debug","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","height":27,"time":"2023-09-06T10:26:10+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.886691154s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.886678086s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.886582145s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.886542767s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.883719106s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.883681511s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.883631521s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.883175019s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.883142084s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.883114176s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.883087998s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.883039195s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.88299991s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.882505013s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.882466447s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.882436228s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p54qca6v4 27/0/commit/0}","hash":"E0D7D715E8D5","time":"2023-09-06T10:26:10+03:30","message":"block committed, schedule new height"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.879640709s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.879598478s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.879498654s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","duration":"1.878082517s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","duration":"1.878085481s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","duration":"1.878015151s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","duration":"1.878015674s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","duration":"1.87796233s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","duration":"1.877935719s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","vote":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:10+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"74B5D0C2B734 {1: โŒ˜ [74B5D0C2B734 ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.869451664s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.869415885s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.86938717s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 74B5D0C2B734 ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.868998983s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.868959347s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.868930303s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 26 โ‡ˆ 26 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.868587615s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.86854734s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","duration":"1.868539247s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.868517528s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","duration":"1.868508856s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","duration":"1.868482623s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.868123882s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.868090627s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.868061092s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"txs17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"17B5009BFCFC {1: โŒ˜ [17B5009BFCFC ]}","time":"2023-09-06T10:26:10+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","time":"2023-09-06T10:26:10+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.86318054s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.863145926s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.863116769s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{โŒ˜ 27 E0D7D715E8D5}","time":"2023-09-06T10:26:10+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","duration":"1.862727462s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","duration":"1.862696675s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","duration":"1.862667826s","height":27,"round":0,"target":"new-height","time":"2023-09-06T10:26:10+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:10+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:10+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PRECOMMIT โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:10+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:10+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:10+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:10+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:10+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:10+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:10+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:10+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:10+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:11+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:11+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:11+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0/PREPARE โŒ˜ E0D7D715E8D5 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:11+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","time":"2023-09-06T10:26:11+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:11+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:11+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:11+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:11+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{27/0}","time":"2023-09-06T10:26:11+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{27/0}","time":"2023-09-06T10:26:11+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","ours":0,"peer":0,"time":"2023-09-06T10:26:11+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 27/0/new-height/0}","ticker":"1.879598478s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 27/0/new-height/0}","ticker":"1.879640709s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 27/0/new-height/0}","ticker":"1.868539247s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 27/0/new-height/0}","ticker":"1.868959347s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 27/0/new-height/0}","ticker":"1.878015151s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 27/0/new-height/0}","ticker":"1.879498654s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 27/0/new-height/0}","ticker":"1.89750599s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 27/0/new-height/0}","ticker":"1.913980949s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.862696675s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 27/0/new-height/0}","ticker":"1.886542767s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 27/0/new-height/0}","ticker":"1.92243684s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.897543953s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 27/0/new-height/0}","ticker":"1.882436228s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.897543953s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.862696675s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883681511s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.863145926s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.878085481s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.878085481s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.863145926s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883681511s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.922337703s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 27/0/new-height/0}","ticker":"1.882466447s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.882505013s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.868090627s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.922337703s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.882505013s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.868090627s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.877935719s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.912485328s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.86854734s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.877935719s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.912485328s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.86854734s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.883087998s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.912395662s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.913943486s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.883087998s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.912395662s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.913943486s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.88299991s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883142084s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.883142084s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.88299991s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868123882s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868123882s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.86318054s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.86318054s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868587615s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.868587615s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.862667826s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.862667826s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.862727462s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"1.862727462s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.863116769s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.863116769s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868517528s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868517528s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868061092s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"1.868061092s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","height":28,"active":false,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.89004168s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.89004168s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.922513945s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.886582145s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.922513945s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.886582145s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","height":28,"active":true,"time":"2023-09-06T10:26:12+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.912437014s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.868508856s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:12+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.912437014s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.868508856s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.878015674s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.869415885s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.886678086s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.878015674s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.869415885s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.897584199s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","time":"2023-09-06T10:26:12+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.886678086s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.897584199s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.883039195s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.86938717s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"1.883039195s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883175019s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.869451664s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.86938717s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883175019s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.869451664s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868930303s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868930303s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.868998983s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883719106s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.868998983s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.890158105s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868482623s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.883719106s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"1.890158105s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.868482623s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.878082517s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.886691154s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"1.878082517s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"1.886691154s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","tx":"{โŒ˜ 0D3AB77B4826 ๐Ÿต 5c0fefa0 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: in each height only 1/3 of stake can join","time":"2023-09-06T10:26:12+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#27 โŒ˜ E0D7D715E8D5 ๐Ÿ•ฃ 10.26.10}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: in each height only 1/3 of stake can join","time":"2023-09-06T10:26:12+03:30","message":"found invalid transaction"} -{"level":"info","_consensus":"{pc1p8ngea89f 28/0/propose/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","duration":"2s","height":28,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","duration":"4s","height":28,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883114176s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883114176s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.913848162s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.913848162s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883631521s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.883631521s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.87796233s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"1.87796233s@ 27/0/new-height","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"4s@ 26/0/change-proposer","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","ticker":"2s@ 27/0/query-proposal","time":"2023-09-06T10:26:12+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"parsing Proposal message"} -{"level":"info","_consensus":"{pc1psgn080ye 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","proposal":"{28/0 ๐Ÿ—ƒ {โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}}","time":"2023-09-06T10:26:12+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/prepare/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PREPARE โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1psgn080ye}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.885585737s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.885577143s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.885460786s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 27}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"sortition transaction broadcasted"} -{"level":"info","_consensus":"{pc1p6qk3axu7 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.870822902s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.870813208s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.870709894s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:12+03:30","message":"new validator joined"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","block":"{โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 42EB4E2BC4FC ๐Ÿ“จ 3}","round":0,"time":"2023-09-06T10:26:12+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:12+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.864679769s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.864641714s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.864594155s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1psgn080ye 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.858522052s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.858386379s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p54qca6v4 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.858097935s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.858053148s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.857929657s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/precommit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","height":28,"time":"2023-09-06T10:26:12+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 28/0/commit/0}","hash":"CE295E972027","time":"2023-09-06T10:26:12+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.855574284s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.855562177s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.855466876s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.855421647s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1psgn080ye 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","vote":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:12+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.849201215s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.849162221s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.849112455s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.846575752s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.846526855s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.846461961s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.846471014s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.846427754s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.846393166s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 27 โ‡ˆ 27 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.845338143s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.845287142s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.845250532s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.841286568s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.841251293s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.841221596s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.841103178s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.841046803s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.840996225s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.840281163s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.840226204s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.840181905s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.839054227s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.839016551s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.838986057s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"CF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txs9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"9C6744C9449D {1: โŒ˜ [9C6744C9449D ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"CF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","duration":"1.835633427s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","duration":"1.835597819s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","duration":"1.835567161s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C6744C9449D ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1pg3yhezax}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","duration":"1.8305345s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","duration":"1.830486502s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","duration":"1.830442075s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.830420152s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.830374644s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.830333814s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.829530801s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.829493016s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.829445342s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"txsCF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"CF829755C378 {1: โŒ˜ [CF829755C378 ]}","time":"2023-09-06T10:26:12+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 4 ๐Ÿงพ 0}","tx":"{โŒ˜ CF829755C378 ๐Ÿต ce295e97 {Sortition ๐ŸŽฏ pc1p8ngea89f}","time":"2023-09-06T10:26:12+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","duration":"1.824519623s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","duration":"1.824483889s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","duration":"1.824454245s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{โŒ˜ 28 CE295E972027}","time":"2023-09-06T10:26:12+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","duration":"1.820910878s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","duration":"1.820868587s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","duration":"1.82081751s","height":28,"round":0,"target":"new-height","time":"2023-09-06T10:26:12+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:12+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:12+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0/PRECOMMIT โŒ˜ CE295E972027 ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:12+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0}","time":"2023-09-06T10:26:12+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","ours":0,"peer":0,"time":"2023-09-06T10:26:12+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","time":"2023-09-06T10:26:12+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0}","time":"2023-09-06T10:26:12+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","ours":0,"peer":0,"time":"2023-09-06T10:26:12+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{28/0}","time":"2023-09-06T10:26:12+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{28/0}","time":"2023-09-06T10:26:12+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","ours":0,"peer":0,"time":"2023-09-06T10:26:12+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p8ngea89f 28/0/new-height/0}","ticker":"1.841221596s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","ticker":"1.838986057s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 28/0/new-height/0}","ticker":"1.858522052s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","ticker":"1.870822902s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 28/0/new-height/0}","ticker":"1.858053148s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 28/0/new-height/0}","ticker":"1.840181905s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 28/0/new-height/0}","ticker":"1.870813208s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 28/0/new-height/0}","ticker":"1.830442075s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 28/0/new-height/0}","ticker":"1.830486502s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pafen0x39 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1psgn080ye 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 28/0/new-height/0}","ticker":"1.885577143s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 28/0/new-height/0}","ticker":"1.858097935s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.830374644s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 28/0/new-height/0}","ticker":"1.858386379s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.855562177s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} -{"level":"warn","_consensus":"{pc1p9jkm6rms 28/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.855562177s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.830374644s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.846471014s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.835567161s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.841286568s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.845287142s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.846471014s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.835567161s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.845287142s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.840996225s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.846393166s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.840226204s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.841286568s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.846393166s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"warn","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.840226204s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.820868587s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.855466876s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.855466876s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.820868587s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855421647s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.846427754s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.839016551s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855421647s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.846427754s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.839016551s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","height":29,"active":false,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855574284s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.846526855s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.840996225s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.824483889s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.841103178s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"1.855574284s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.846526855s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.824483889s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.841103178s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.835633427s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.841251293s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p6qk3axu7 28/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 9 2 4 11 3]","time":"2023-09-06T10:26:14+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.841046803s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.8305345s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.835633427s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.841251293s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.841046803s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.885460786s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.846461961s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.835597819s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.885460786s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.829493016s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.864641714s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.8305345s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.846461961s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","ticker":"1.835597819s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.820910878s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.864641714s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.864594155s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.820910878s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.846575752s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.864594155s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.829493016s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.885585737s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.846575752s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.830420152s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"1.885585737s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.830420152s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.82081751s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.849162221s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.864679769s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.82081751s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.864679769s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.840281163s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.849162221s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.840281163s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.830333814s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.845338143s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.830333814s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"1.845338143s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.845250532s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.845250532s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.857929657s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"1.857929657s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#28 โŒ˜ CE295E972027 ๐Ÿ•ฃ 10.26.12}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:14+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","height":29,"active":true,"time":"2023-09-06T10:26:14+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/propose/0}","proposer":"pc1p9jkm6rmsv8255ffmjzr94ywmyc9ljh9jefhecc","time":"2023-09-06T10:26:14+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","time":"2023-09-06T10:26:14+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.824519623s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/propose/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.824519623s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","duration":"2s","height":29,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.829530801s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","duration":"4s","height":29,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.829530801s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.839054227s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.839054227s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.849201215s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"1.849201215s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.824454245s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.824454245s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.849112455s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.849112455s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.870709894s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.870709894s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.829445342s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"1.829445342s@ 28/0/new-height","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"4s@ 27/0/change-proposer","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","ticker":"2s@ 28/0/query-proposal","time":"2023-09-06T10:26:14+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"parsing Proposal message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","proposal":"{29/0 ๐Ÿ—ƒ {โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}}","time":"2023-09-06T10:26:14+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.880913052s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/prepare/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.880847076s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.880744633s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6qk3axu7 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.878408921s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.878391476s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.878296467s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.86890486s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.868855046s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.868812419s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"CDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1pg3yhezax 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.859102632s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.859065466s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","height":29,"time":"2023-09-06T10:26:14+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.85668543s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.856673582s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.856583518s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.856537029s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p6qk3axu7}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.849923683s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.849871544s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.849829467s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.849615044s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.849563679s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.849519818s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"CDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 28}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.841993249s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.841935192s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.841884311s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:14+03:30","message":"check connectivity"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.837339336s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.837293254s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.837261592s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.83029219s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.830245128s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.830205523s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.830044726s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.829990355s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.829944082s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:14+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:14+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.817449738s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.817393843s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.817348558s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","address":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","power":1000000,"time":"2023-09-06T10:26:14+03:30","message":"new validator joined"} -{"level":"info","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","block":"{โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms ๐Ÿ’ป FC3B14842429 ๐Ÿ“จ 4}","round":0,"time":"2023-09-06T10:26:14+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:14+03:30","message":"set new sandbox"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:14+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:14+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_consensus":"{pc1p54qca6v4 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.810225332s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.810044767s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/precommit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","height":29,"time":"2023-09-06T10:26:14+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 29/0/commit/0}","hash":"B2B37184D15D","time":"2023-09-06T10:26:14+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.808019037s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.808004493s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.807902924s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.807904374s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:14+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:14+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","vote":"{29/0/PRECOMMIT โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:14+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.801638642s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.801596552s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.801547828s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txsCDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"CDAC090152BD {1: โŒ˜ [CDAC090152BD ]}","time":"2023-09-06T10:26:14+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ CDAC090152BD ๐Ÿต b2b37184 {Sortition ๐ŸŽฏ pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.796952145s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.796952935s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.796894152s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.796894339s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.796840927s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.796842641s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","duration":"1.79274562s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","duration":"1.792690034s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","duration":"1.792642863s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 28 โ‡ˆ 28 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.790051672s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.790004411s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.789964369s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","duration":"1.78939243s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","duration":"1.789355096s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","duration":"1.789305551s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","duration":"1.787962578s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","duration":"1.78792679s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","duration":"1.78789877s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.780688151s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.780638987s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.780580485s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.7727266s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.772673997s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.772627325s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{โŒ˜ 29 B2B37184D15D}","time":"2023-09-06T10:26:14+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","duration":"1.764787616s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","duration":"1.76474744s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","duration":"1.764698647s","height":29,"round":0,"target":"new-height","time":"2023-09-06T10:26:14+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:14+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:14+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:14+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:14+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:14+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:15+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:15+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:15+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0/PREPARE โŒ˜ B2B37184D15D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:15+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:15+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:15+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","time":"2023-09-06T10:26:15+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:15+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:15+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{29/0}","time":"2023-09-06T10:26:15+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{29/0}","time":"2023-09-06T10:26:15+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","ours":0,"peer":0,"time":"2023-09-06T10:26:15+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:15+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1p598fm5tg 29/0/new-height/0}","ticker":"1.880847076s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","ticker":"1.880913052s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 29/0/new-height/0}","ticker":"1.808004493s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","ticker":"1.801547828s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 29/0/new-height/0}","ticker":"1.772627325s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","ticker":"1.849615044s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","ticker":"1.837293254s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 29/0/new-height/0}","ticker":"1.856673582s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.849923683s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_consensus":"{pc1p8ngea89f 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1pafen0x39 29/0/new-height/0}","ticker":"1.780638987s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 29/0/new-height/0}","ticker":"1.78792679s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p6qk3axu7 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} -{"level":"info","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"info","_consensus":"{pc1pafen0x39 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 29/0/new-height/0}","ticker":"1.789305551s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1ppqfxuy3h 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.772673997s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1psgn080ye 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.772673997s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.849923683s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.859065466s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.76474744s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.859065466s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.796840927s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.796952145s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","ticker":"1.78789877s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.764698647s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.796840927s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.796952145s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.764698647s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","height":30,"active":false,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.868812419s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.78939243s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.808019037s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.868812419s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.796952935s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.78939243s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"warn","_consensus":"{pc1p9jkm6rms 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.837261592s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.796952935s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.880744633s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.837261592s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.86890486s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.880744633s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.796894152s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.787962578s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.86890486s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.796894152s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.7727266s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.76474744s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.841884311s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.856537029s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.787962578s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.7727266s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.808019037s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.856537029s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.817393843s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.790004411s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.817449738s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.817393843s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.807904374s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.790004411s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.764787616s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.817449738s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.841993249s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.807904374s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.764787616s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.807902924s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.841993249s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.837339336s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1pg3yhezax 29/0/new-height/0}","err":"certificate has an unexpected committers: [6 7 8 9 4 11 3]","time":"2023-09-06T10:26:16+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.789964369s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.807902924s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.810225332s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.830044726s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.837339336s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.849563679s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.810225332s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.830044726s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.849563679s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.841884311s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.83029219s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","height":30,"active":true,"time":"2023-09-06T10:26:16+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.790051672s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.829990355s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.878408921s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.85668543s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:16+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.796842641s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.790051672s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.829990355s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.85668543s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.796842641s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.810044767s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.780688151s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.878391476s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.878408921s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.830205523s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","ticker":"1.878391476s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.878296467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.849829467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.830205523s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.849829467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.83029219s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"1.780688151s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.789964369s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.878296467s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.810044767s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.792642863s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.79274562s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.829944082s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","time":"2023-09-06T10:26:16+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"1.792642863s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.79274562s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.780580485s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.829944082s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.856583518s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"1.780580485s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.849519818s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.856583518s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.849519818s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.859102632s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.801638642s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.817348558s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.801638642s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"1.817348558s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.859102632s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.830245128s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.830245128s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.792690034s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.792690034s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.801596552s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"1.801596552s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#29 โŒ˜ B2B37184D15D ๐Ÿ•ฃ 10.26.14}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:16+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/propose/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","duration":"2s","height":30,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","duration":"4s","height":30,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.796894339s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.796894339s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.789355096s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.789355096s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.868855046s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.868855046s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.841935192s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.841935192s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.849871544s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"1.849871544s@ 29/0/new-height","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","ticker":"2s@ 29/0/query-proposal","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","ticker":"4s@ 28/0/change-proposer","time":"2023-09-06T10:26:16+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","proposal":"{30/0 ๐Ÿ—ƒ {โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:16+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/prepare/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 29}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.906608818s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.906561343s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.90647925s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6h3qjpec 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.89607117s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.896058217s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p54qca6v4 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.894817144s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.894809874s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.894711588s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","address":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","power":1000000,"time":"2023-09-06T10:26:16+03:30","message":"new validator joined"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","block":"{โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 428A685B3573 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:16+03:30","message":"new block committed"} -{"level":"debug","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","height":30,"time":"2023-09-06T10:26:16+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.893042502s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.893033371s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.892939764s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.892894415s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.891554928s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:16+03:30","message":"set new sandbox"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.891501964s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.891453321s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1pg3yhezax 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.888984992s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.888970711s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.888537353s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.888502811s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.888472706s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/precommit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","height":30,"time":"2023-09-06T10:26:16+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 30/0/commit/0}","hash":"30911E4D587D","time":"2023-09-06T10:26:16+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.886259573s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.886246477s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.886145176s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.886132021s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.885165298s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.885107904s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.885054789s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.881678679s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.881631766s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.8815841s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","duration":"1.878807869s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","duration":"1.878762119s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","duration":"1.878713813s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","vote":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:16+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.874428496s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.874375513s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.874327475s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.873893595s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.873848915s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.873805439s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 29 โ‡ˆ 29 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.872804396s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.872746933s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.872701958s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.871058818s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.870999405s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.870936092s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.869689389s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.869635237s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.869588094s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.868083008s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.868032932s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.867986663s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.867448466s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.867390035s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.867340133s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.864941015s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.864888117s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.864832853s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","duration":"1.86398786s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","duration":"1.863931739s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","duration":"1.86388214s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.863361744s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.863311911s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.863265512s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","duration":"1.860194096s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","duration":"1.860143349s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","duration":"1.860094021s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.858969674s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.858918574s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.858876802s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{โŒ˜ 30 30911E4D587D}","time":"2023-09-06T10:26:16+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","duration":"1.855524162s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","duration":"1.855477047s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","duration":"1.855435381s","height":30,"round":0,"target":"new-height","time":"2023-09-06T10:26:16+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:16+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:16+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PRECOMMIT โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:16+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:16+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:16+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:16+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:16+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:16+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:16+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:16+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:16+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:16+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:17+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:17+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:17+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0/PREPARE โŒ˜ 30911E4D587D ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:17+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","time":"2023-09-06T10:26:17+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:17+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:17+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:17+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:17+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{30/0}","time":"2023-09-06T10:26:17+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{30/0}","time":"2023-09-06T10:26:17+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","ours":0,"peer":0,"time":"2023-09-06T10:26:17+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 30/0/new-height/0}","ticker":"1.888502811s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 30/0/new-height/0}","ticker":"1.873805439s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 30/0/new-height/0}","ticker":"1.886145176s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 30/0/new-height/0}","ticker":"1.860143349s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 30/0/new-height/0}","ticker":"1.906561343s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 30/0/new-height/0}","ticker":"1.858918574s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 30/0/new-height/0}","ticker":"1.871058818s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 30/0/new-height/0}","ticker":"1.8815841s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 30/0/new-height/0}","ticker":"1.892894415s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 30/0/new-height/0}","ticker":"1.896058217s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 30/0/new-height/0}","ticker":"1.894817144s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 30/0/new-height/0}","ticker":"1.855435381s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.868032932s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.868032932s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.855477047s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.855477047s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.863311911s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.863311911s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.872746933s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.872746933s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.894809874s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.894809874s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.888970711s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.888970711s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.886246477s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886132021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.886246477s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886132021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.870999405s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.873893595s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.870999405s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.873848915s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.870936092s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.873848915s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.870936092s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.873893595s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.867390035s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.86388214s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.867390035s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.86388214s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.867448466s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.888984992s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886259573s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.867448466s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.888984992s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.886259573s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.86398786s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.863931739s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.86398786s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"1.863931739s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.867340133s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"1.867340133s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.872804396s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.872804396s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.855524162s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.855524162s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.878807869s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.878713813s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.878807869s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.878713813s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.868083008s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.868083008s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.881678679s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.881678679s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","height":31,"active":false,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.858969674s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.885054789s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","height":31,"active":true,"time":"2023-09-06T10:26:18+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.885165298s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.858969674s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.893033371s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/propose/0}","proposer":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","time":"2023-09-06T10:26:18+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.885165298s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.893033371s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.863361744s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.885054789s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.888537353s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.874428496s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.888537353s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.90647925s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"1.863361744s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.874428496s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.891554928s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.90647925s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.891554928s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","time":"2023-09-06T10:26:18+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.864941015s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.891453321s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.906608818s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.874327475s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.864941015s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.892939764s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.891453321s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.874327475s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.860194096s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.888472706s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.860194096s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.892939764s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.888472706s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.864832853s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.869689389s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.864832853s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.906608818s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.869689389s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.864888117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.869588094s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.864888117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.878762119s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.869588094s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.878762119s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.874375513s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.874375513s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.860094021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.881631766s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.860094021s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.881631766s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.869635237s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.869635237s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.893042502s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.885107904s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"1.893042502s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.89607117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.885107904s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"1.89607117s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.891501964s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"1.891501964s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#30 โŒ˜ 30911E4D587D ๐Ÿ•ฃ 10.26.16}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:18+03:30","message":"found invalid transaction"} -{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/propose/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","duration":"2s","height":31,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","duration":"4s","height":31,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"parsing Proposal message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.863265512s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.863265512s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.858876802s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.858876802s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.867986663s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.867986663s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.872701958s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.872701958s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.894711588s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"1.894711588s@ 30/0/new-height","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"2s@ 30/0/query-proposal","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","proposal":"{31/0 ๐Ÿ—ƒ {โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:18+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"handle ticker"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","ticker":"4s@ 29/0/change-proposer","time":"2023-09-06T10:26:18+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/prepare/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.927610396s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.927556793s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.92744701s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 30}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} -{"level":"info","_consensus":"{pc1p54qca6v4 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.916818029s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.916770419s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.916687226s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6h3qjpec 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.916224028s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.916215044s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.915335959s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.915271812s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.915214287s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.914579426s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.914533502s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.914485135s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","height":31,"time":"2023-09-06T10:26:18+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.913529336s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.91352101s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.913429915s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.913383845s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.911904895s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.911850531s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.911805273s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","block":"{โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm ๐Ÿ’ป 57621C3FCFAB ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:18+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:18+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1pg3yhezax 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.906671257s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.906657252s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.904706324s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.904637961s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.904577275s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/precommit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","height":31,"time":"2023-09-06T10:26:18+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 31/0/commit/0}","hash":"B470E4510FB8","time":"2023-09-06T10:26:18+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.904249749s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.904241841s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.904141201s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.904114473s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:18+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:18+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"parsing Transactions message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","duration":"1.90260064s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","duration":"1.902539083s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","duration":"1.902489772s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:18+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.898201384s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.89814575s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.898098139s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.897733717s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.897682863s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.897635041s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.897394999s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.897344732s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.897298084s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.897059595s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.897010189s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.89696926s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.896652333s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.896600976s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.89655374s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.896278845s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.896232592s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.896184508s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.895897781s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.895843216s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.895800245s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","duration":"1.895564688s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","duration":"1.895519906s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","duration":"1.895479241s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","duration":"1.895152373s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","duration":"1.895099963s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","duration":"1.895055813s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","vote":"{31/0/PRECOMMIT โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:18+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"txs82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"82A6420259DE {1: โŒ˜ [82A6420259DE ]}","time":"2023-09-06T10:26:18+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","time":"2023-09-06T10:26:18+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 30 โ‡ˆ 30 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.889234948s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.889175962s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.889126834s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.888689906s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.888644542s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.888601844s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.888156293s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.88811206s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.888066358s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{โŒ˜ 31 B470E4510FB8}","time":"2023-09-06T10:26:18+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","duration":"1.887438587s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","duration":"1.88739084s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","duration":"1.887339274s","height":31,"round":0,"target":"new-height","time":"2023-09-06T10:26:18+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","time":"2023-09-06T10:26:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","time":"2023-09-06T10:26:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0/PREPARE โŒ˜ B470E4510FB8 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:19+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:19+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","time":"2023-09-06T10:26:19+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0}","time":"2023-09-06T10:26:19+03:30","message":"parsing HeartBeat message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","ours":0,"peer":0,"time":"2023-09-06T10:26:19+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0}","time":"2023-09-06T10:26:19+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","ours":0,"peer":0,"time":"2023-09-06T10:26:19+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{31/0}","time":"2023-09-06T10:26:19+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{31/0}","time":"2023-09-06T10:26:19+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","ours":0,"peer":0,"time":"2023-09-06T10:26:19+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1psgn080ye 31/0/new-height/0}","ticker":"1.889234948s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 31/0/new-height/0}","ticker":"1.927556793s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 31/0/new-height/0}","ticker":"1.904577275s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 31/0/new-height/0}","ticker":"1.916215044s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 31/0/new-height/0}","ticker":"1.927610396s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 31/0/new-height/0}","ticker":"1.913529336s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 31/0/new-height/0}","ticker":"1.904141201s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.902489772s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.902489772s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.911904895s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 31/0/new-height/0}","ticker":"1.887339274s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.911904895s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.915214287s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 31/0/new-height/0}","ticker":"1.913429915s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.887438587s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.904706324s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.887438587s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.904706324s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 31/0/new-height/0}","ticker":"1.916818029s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888156293s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.914579426s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888156293s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 31/0/new-height/0}","ticker":"1.895055813s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.915214287s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.91352101s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888689906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.914485135s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.91352101s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.914485135s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.914579426s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 31/0/new-height/0}","ticker":"1.895843216s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.911805273s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.896278845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.90260064s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.911805273s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.896278845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.90260064s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.92744701s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.92744701s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.888689906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.915335959s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897059595s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.906657252s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.915335959s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897059595s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.906657252s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.895564688s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.904241841s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.895564688s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.904241841s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897733717s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.897733717s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.913383845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.913383845s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.895479241s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.895519906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.895479241s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.895519906s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88811206s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.896184508s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.889126834s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88811206s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.896184508s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.889126834s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.889175962s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.897635041s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.896232592s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.897635041s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.889175962s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.896232592s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888066358s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.89696926s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888066358s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897010189s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.888644542s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"1.89696926s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897010189s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888601844s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.888644542s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.888601844s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897682863s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88739084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.897682863s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904249749s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.88739084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904249749s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.906671257s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904114473s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"1.906671257s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"1.904114473s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.916224028s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","ticker":"1.916224028s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.914533502s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.914533502s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.902539083s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.902539083s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 32/0/new-height/0}","height":32,"active":false,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.896600976s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.911850531s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.896600976s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.911850531s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.895099963s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.895099963s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","height":32,"active":true,"time":"2023-09-06T10:26:20+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p54qca6v4 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.904637961s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.897344732s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/propose/0}","proposer":"pc1p54qca6v4h9fnrfelpuma9svgwkpyc94pcs4xwe","time":"2023-09-06T10:26:20+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.904637961s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.897344732s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.915271812s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.916770419s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","time":"2023-09-06T10:26:20+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"1.915271812s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.916770419s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.916687226s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.89814575s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.89814575s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.916687226s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.895800245s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.895800245s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.89655374s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.89655374s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.898098139s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.898098139s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.897298084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"1.897298084s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:20+03:30","message":"found invalid transaction"} -{"level":"debug","_state":"{#31 โŒ˜ B470E4510FB8 ๐Ÿ•ฃ 10.26.18}","tx":"{โŒ˜ 82A6420259DE ๐Ÿต b470e451 {Sortition ๐ŸŽฏ pc1p24snhmkw}","err":"invalid transaction: oldest validator still didn't propose any block","time":"2023-09-06T10:26:20+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","ticker":"4s@ 30/0/change-proposer","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 32/0/propose/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","duration":"2s","height":32,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","duration":"4s","height":32,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"proposal{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.896652333s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.896652333s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.897394999s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.897394999s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895897781s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895897781s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.898201384s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.898201384s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895152373s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"1.895152373s@ 31/0/new-height","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","ticker":"2s@ 31/0/query-proposal","time":"2023-09-06T10:26:20+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","proposal":"{32/0 ๐Ÿ—ƒ {โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:20+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/prepare/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"prepare has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.922261092s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.922250721s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.922144541s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1pg3yhezax 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.905881799s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.905838638s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 31}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.904393736s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.904342228s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.90429319s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","height":32,"time":"2023-09-06T10:26:20+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.903263668s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.903248421s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.903173073s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.903157951s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.901820301s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.9017717s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.901724649s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.894516575s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.894480775s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.894451648s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","block":"{โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p54qca6v4 ๐Ÿ’ป 5DA34CA13099 ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:20+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:20+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p54qca6v4 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.885310135s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.88519721s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","height":32,"time":"2023-09-06T10:26:20+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.881773432s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.881763001s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6h3qjpec 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.881663026s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.8816392s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.881624792s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.881619924s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"parsing Transactions message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.878538056s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.878488819s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.878445776s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/precommit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","height":32,"time":"2023-09-06T10:26:20+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 32/0/commit/0}","hash":"B1F9F60EDEBA","time":"2023-09-06T10:26:20+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.878121267s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.878112953s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.878013108s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.877976882s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.877840345s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.877782125s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.877735039s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.87772903s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.877681942s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.877635591s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.87703013s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.876980635s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.876932869s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.87691174s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.876852575s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.876803597s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","duration":"1.876305389s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","duration":"1.876261059s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","duration":"1.8762134s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.876180932s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.876129198s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.876071015s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","duration":"1.875458001s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","duration":"1.87540552s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","duration":"1.875355599s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.866874173s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.866788852s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.866719655s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.865888089s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.865818372s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.8657601s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.864704354s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.86462671s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.86457772s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.863861954s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.863811668s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.863766991s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","vote":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:20+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","duration":"1.863081119s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","duration":"1.86303103s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","duration":"1.862984586s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 31 โ‡ˆ 31 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.862800489s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.862767841s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.862740249s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.862352788s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.862322464s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.862295249s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.861912127s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.86188185s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.861853759s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"36EF447E5FCB {1: โŒ˜ [36EF447E5FCB ]}","time":"2023-09-06T10:26:20+03:30","message":"parsing Transactions message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 3 ๐Ÿงพ 0}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","time":"2023-09-06T10:26:20+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.856902419s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.856867944s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.856839381s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{โŒ˜ 32 B1F9F60EDEBA}","time":"2023-09-06T10:26:20+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","duration":"1.856449865s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","duration":"1.856419228s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","duration":"1.85639196s","height":32,"round":0,"target":"new-height","time":"2023-09-06T10:26:20+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:20+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:20+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PREPARE โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:20+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:20+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:20+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:20+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:20+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:20+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:20+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:20+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:20+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:21+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:21+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:21+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0/PRECOMMIT โŒ˜ B1F9F60EDEBA ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:21+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","time":"2023-09-06T10:26:21+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:21+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:21+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:21+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:21+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{32/0}","time":"2023-09-06T10:26:21+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{32/0}","time":"2023-09-06T10:26:21+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","ours":0,"peer":0,"time":"2023-09-06T10:26:21+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1psgn080ye 32/0/new-height/0}","ticker":"1.905838638s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 32/0/new-height/0}","ticker":"1.877635591s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 32/0/new-height/0}","ticker":"1.922250721s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 32/0/new-height/0}","ticker":"1.866719655s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 32/0/new-height/0}","ticker":"1.88519721s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 32/0/new-height/0}","ticker":"1.885310135s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 32/0/new-height/0}","ticker":"1.901724649s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 32/0/new-height/0}","ticker":"1.862740249s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 32/0/new-height/0}","ticker":"1.894480775s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.901820301s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.901820301s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 32/0/new-height/0}","ticker":"1.876261059s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 32/0/new-height/0}","ticker":"1.878112953s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.878445776s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.876305389s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.878445776s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.876305389s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.876932869s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 32/0/new-height/0}","ticker":"1.8816392s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.876932869s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.878538056s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.878538056s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.904393736s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.8762134s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.904393736s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.8762134s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.90429319s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.90429319s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.87703013s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.922144541s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.922144541s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.87703013s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.87772903s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.87772903s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.877840345s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.877840345s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856449865s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856449865s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.856839381s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862352788s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.878013108s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.856839381s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.878013108s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862352788s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.861853759s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856867944s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.861853759s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856867944s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.861912127s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.862295249s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856419228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.861912127s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.862295249s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.856419228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.85639196s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862800489s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862322464s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.85639196s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862322464s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.862800489s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.877976882s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862767841s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 33/0/new-height/0}","height":33,"active":false,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.862767841s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.876180932s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.881663026s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.86188185s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.881663026s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","height":33,"active":true,"time":"2023-09-06T10:26:22+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.876180932s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.862984586s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.863811668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.862984586s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.903248421s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.863811668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.865888089s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.903248421s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.863766991s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.881619924s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.865888089s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.863766991s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.881619924s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.875458001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.877976882s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.881763001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.875458001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.86457772s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.881763001s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.9017717s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856902419s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.878121267s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.86457772s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.877735039s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.9017717s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"1.878121267s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"1.86188185s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.866874173s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.877735039s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881773432s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.904342228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.866874173s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881773432s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.904342228s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.894516575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.894516575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.8657601s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863081119s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.922261092s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.856902419s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.866788852s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.8657601s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.922261092s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.87691174s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863081119s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.866788852s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.87691174s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881624792s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.878488819s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.865818372s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863861954s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.878488819s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"1.881624792s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.865818372s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.863861954s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.877782125s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.877782125s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.864704354s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.876980635s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"1.864704354s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86303103s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"1.876980635s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86303103s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86462671s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.86462671s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:22+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#32 โŒ˜ B1F9F60EDEBA ๐Ÿ•ฃ 10.26.20}","tx":"{โŒ˜ 36EF447E5FCB ๐Ÿต b1f9f60e {Sortition ๐ŸŽฏ pc1pafen0x39}","err":"invalid transaction: in each height only 1/3 of stake can join","time":"2023-09-06T10:26:22+03:30","message":"found invalid transaction"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/propose/0}","proposer":"pc1pg3yhezaxjxjxc9pud0a6t9m8n2sj3jc7sdecd8","time":"2023-09-06T10:26:22+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","time":"2023-09-06T10:26:22+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.894451648s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.894451648s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876071015s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876071015s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.875355599s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.875355599s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876803597s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.876803597s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903173073s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903173073s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903263668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"1.903263668s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 33/0/propose/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","duration":"2s","height":33,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","duration":"4s","height":33,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.903157951s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.903157951s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.877681942s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.877681942s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.87540552s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.87540552s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876852575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876852575s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.905881799s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.905881799s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876129198s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"1.876129198s@ 32/0/new-height","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"4s@ 31/0/change-proposer","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","ticker":"2s@ 32/0/query-proposal","time":"2023-09-06T10:26:22+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","proposal":"{33/0 ๐Ÿ—ƒ {โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:22+03:30","message":"proposal set"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/prepare/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.905561998s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.905547938s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.905447821s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 32}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} -{"level":"info","_consensus":"{pc1pg3yhezax 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.891964638s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.89191877s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","address":"pc1p24snhmkw4jvnahmscy8ahumae8w4lsy4u3e5ur","power":1000000,"time":"2023-09-06T10:26:22+03:30","message":"new validator joined"} -{"level":"info","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","block":"{โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1pg3yhezax ๐Ÿ’ป DB927A11768D ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:22+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","height":33,"time":"2023-09-06T10:26:22+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.889687938s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.88967675s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.889589273s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.889404068s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 2 ๐Ÿงพ 0}","time":"2023-09-06T10:26:22+03:30","message":"set new sandbox"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.886501575s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.88644777s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.886401091s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p54qca6v4 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.884103968s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.884096002s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.883997563s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6h3qjpec 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.883393707s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.88314807s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.881724464s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.881672114s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.881626366s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/precommit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","height":33,"time":"2023-09-06T10:26:22+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 33/0/commit/0}","hash":"A721B7BDF45C","time":"2023-09-06T10:26:22+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.879912968s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.879902574s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.879793992s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.879775373s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.876982017s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.876927556s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.876886018s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.876882626s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.876841203s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.876797669s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.873962354s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.873914769s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.873875171s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p54qca6v4}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.8722692s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.872216826s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.872171131s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.870792366s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.870736497s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.870687093s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.868436785s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.868383565s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.8683305s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","duration":"1.867587692s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","duration":"1.867550779s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","duration":"1.867518896s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","duration":"1.867491862s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","duration":"1.867461578s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","duration":"1.867446703s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","vote":"{33/0/PRECOMMIT โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.864929306s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.864881099s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.864833514s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 32 โ‡ˆ 32 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.863993502s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.863952794s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.863922886s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.862054281s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.862006045s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.861966063s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.861350203s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.86131554s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.861284938s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.859153207s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.859105165s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.859066368s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.858662797s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.858621527s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.858591281s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","duration":"1.856196981s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","duration":"1.856152122s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","duration":"1.856110246s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{โŒ˜ 33 A721B7BDF45C}","time":"2023-09-06T10:26:22+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","duration":"1.856006303s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","duration":"1.855972283s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","duration":"1.855941917s","height":33,"round":0,"target":"new-height","time":"2023-09-06T10:26:22+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:22+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:22+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0/PREPARE โŒ˜ A721B7BDF45C ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:22+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","time":"2023-09-06T10:26:22+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0}","time":"2023-09-06T10:26:22+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","ours":0,"peer":0,"time":"2023-09-06T10:26:22+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0}","time":"2023-09-06T10:26:22+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","ours":0,"peer":0,"time":"2023-09-06T10:26:22+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{33/0}","time":"2023-09-06T10:26:22+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{33/0}","time":"2023-09-06T10:26:22+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","ours":0,"peer":0,"time":"2023-09-06T10:26:22+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","ticker":"1.879793992s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 33/0/new-height/0}","ticker":"1.905547938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","ticker":"1.889687938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","ticker":"1.905561998s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 33/0/new-height/0}","ticker":"1.856152122s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","ticker":"1.859066368s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"info","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","ticker":"1.889589273s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p6h3qjpec 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","ticker":"1.858591281s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 33/0/new-height/0}","ticker":"1.867446703s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","ticker":"1.859153207s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1psgn080ye 33/0/new-height/0}","ticker":"1.88967675s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 33/0/new-height/0}","ticker":"1.88314807s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.859105165s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.8722692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_consensus":"{pc1pg3yhezax 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.859105165s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.8722692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"warn","_consensus":"{pc1p38j3r9xm 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} -{"level":"warn","_consensus":"{pc1p9jkm6rms 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.884096002s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.881724464s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.884096002s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.881724464s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"warn","_consensus":"{pc1p8ngea89f 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} -{"level":"info","_consensus":"{pc1psgn080ye 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.864881099s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.867550779s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.864881099s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} -{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.867550779s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.863993502s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"warn","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"warn","_consensus":"{pc1p54qca6v4 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.863993502s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.883393707s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1ppqfxuy3h 33/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 7 8 9 4 11]","time":"2023-09-06T10:26:24+03:30","message":"updating last certificate failed"} -{"level":"info","_consensus":"{pc1p8ngea89f 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.861350203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.883393707s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.861350203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} -{"level":"info","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.856006303s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.86131554s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.886501575s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","height":34,"active":true,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.876841203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.856006303s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.886501575s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.876841203s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.86131554s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.876886018s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.876886018s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.876982017s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","height":34,"active":false,"time":"2023-09-06T10:26:24+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.870736497s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.863952794s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.876982017s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.870736497s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.863952794s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/propose/0}","proposer":"pc1p8ngea89fpr4ute8nqtye09nde03d2n33kmyzm0","time":"2023-09-06T10:26:24+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.864929306s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.864929306s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.862054281s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.858662797s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.867518896s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.867587692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.862054281s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.855972283s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.883997563s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.867518896s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.872171131s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.867587692s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.855972283s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.883997563s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.872171131s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.881672114s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.858662797s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.873914769s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.870792366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.881672114s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.858621527s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.886401091s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.868383565s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.879902574s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"1.858621527s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.886401091s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.856110246s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.867491862s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.879902574s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.868436785s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.856110246s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.867491862s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.876882626s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.868436785s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.870792366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.873914769s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.864833514s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.876882626s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.884103968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.864833514s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.891964638s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.881626366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.884103968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"1.891964638s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.861966063s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","time":"2023-09-06T10:26:24+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.881626366s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.861966063s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.856196981s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879775373s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.905447821s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.856196981s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.873962354s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.8683305s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.872216826s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879775373s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.873962354s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"1.8683305s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.872216826s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.868383565s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.861284938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","ticker":"1.905447821s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.89191877s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.861284938s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.862006045s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.88644777s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.89191877s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.862006045s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.863922886s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.88644777s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.863922886s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.876927556s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"1.876927556s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.855941917s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.855941917s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879912968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"1.879912968s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"debug","_state":"{#33 โŒ˜ A721B7BDF45C ๐Ÿ•ฃ 10.26.22}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid sequence: expected: 2, got: 1","time":"2023-09-06T10:26:24+03:30","message":"found invalid transaction"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 34/0/propose/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","duration":"2s","height":34,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","duration":"4s","height":34,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.876797669s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.876797669s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.870687093s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.870687093s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.873875171s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.873875171s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.867461578s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.867461578s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.889404068s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"1.889404068s@ 33/0/new-height","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"4s@ 32/0/change-proposer","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"proposal{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","ticker":"2s@ 33/0/query-proposal","time":"2023-09-06T10:26:24+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","proposal":"{34/0 ๐Ÿ—ƒ {โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:24+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/prepare/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} -{"level":"info","_consensus":"{pc1p38j3r9xm 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.911597205s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.911586227s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.911477173s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1pg3yhezax 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.907384258s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.907377734s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","height":34,"time":"2023-09-06T10:26:24+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.904615s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.904607809s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.904509224s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.90446986s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 33}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.900294752s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.9002342s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.900186255s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.895528365s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.895471495s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.89542488s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.892779008s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.892737779s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.892679755s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} -{"level":"info","_consensus":"{pc1p6h3qjpec 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.891087588s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.891075131s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","height":34,"time":"2023-09-06T10:26:24+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p9jkm6rms 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.888932223s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.888922876s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.88882057s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","address":"pc1pafen0x39yf3ekv4q5498qx383zkq6pwv0gnqfz","power":1000000,"time":"2023-09-06T10:26:24+03:30","message":"new validator joined"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.888784881s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:24+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","block":"{โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f ๐Ÿ’ป 69F8B3E9114A ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:24+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.886778324s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.886729821s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.886688142s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:24+03:30","message":"set new sandbox"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5009BFCFC ๐Ÿต e0d7d715 {Sortition ๐ŸŽฏ pc1p6h3qjpec}","err":"invalid transaction: invalid stamp","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","id":"17b5009bfcfc249ceca8583a434094aa4f9982f2e8983284b75586f8756c198d","time":"2023-09-06T10:26:24+03:30","message":"invalid transaction after rechecking"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.886141155s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.886130931s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.885549533s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.885491109s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.885445791s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.883141822s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.8830941s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.883050787s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/precommit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","height":34,"time":"2023-09-06T10:26:24+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p24snhmkw 34/0/commit/0}","hash":"54BF8835D011","time":"2023-09-06T10:26:24+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.882643582s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.88263321s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.88253308s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.882518147s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.880817378s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.880763014s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.880714825s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.879406427s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.879346474s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.879297023s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.876762074s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.87671264s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.876673264s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","duration":"1.876214764s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","duration":"1.876158025s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","duration":"1.876106322s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.876058609s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.876007072s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.875950106s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.873892786s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.873844954s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.87380312s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","duration":"1.871342834s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","duration":"1.8712916s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","duration":"1.871247148s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.871102954s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.871052775s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.870992914s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","vote":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.8683257s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.868278529s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.868239416s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 33 โ‡ˆ 33 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.867120989s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.867083605s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.867054024s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","duration":"1.865572935s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","duration":"1.865525756s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","duration":"1.865484777s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.864492743s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.864454601s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.864423324s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.861854532s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.861820279s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.861791647s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.859210033s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.85917515s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.859146676s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{โŒ˜ 34 54BF8835D011}","time":"2023-09-06T10:26:24+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","duration":"1.85656507s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","duration":"1.856531307s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","duration":"1.856502178s","height":34,"round":0,"target":"new-height","time":"2023-09-06T10:26:24+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PREPARE โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1p9jkm6rms}","time":"2023-09-06T10:26:24+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:24+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:24+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:24+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:24+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:24+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:24+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:24+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:24+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:24+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:24+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:25+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:25+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:25+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0/PRECOMMIT โŒ˜ 54BF8835D011 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:25+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","time":"2023-09-06T10:26:25+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:25+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:25+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:25+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:25+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"heart-beat{34/0}","time":"2023-09-06T10:26:25+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{34/0}","time":"2023-09-06T10:26:25+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","ours":0,"peer":0,"time":"2023-09-06T10:26:25+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:25+03:30","message":"check connectivity"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","ticker":"1.876673264s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 34/0/new-height/0}","ticker":"1.888922876s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 34/0/new-height/0}","ticker":"1.883141822s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 34/0/new-height/0}","ticker":"1.88263321s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 34/0/new-height/0}","ticker":"1.880817378s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","ticker":"1.859146676s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","ticker":"1.871247148s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p9jkm6rms 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} -{"level":"info","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"info","_consensus":"{pc1psgn080ye 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","ticker":"1.865525756s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.886130931s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","ticker":"1.8830941s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","ticker":"1.88253308s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p24snhmkw 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} -{"level":"info","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.886130931s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.868239416s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p38j3r9xm 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} -{"level":"info","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","ticker":"1.90446986s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.911586227s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.868239416s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.864492743s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.907377734s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1ppqfxuy3h 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.864492743s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.911586227s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.87380312s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"info","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","height":35,"active":false,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.87380312s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 34/0/new-height/0}","ticker":"1.9002342s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"warn","_consensus":"{pc1pg3yhezax 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.861854532s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.876762074s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.861854532s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.876762074s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.891075131s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.867120989s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} -{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"warn","_state":"{#34 โŒ˜ 54BF8835D011 ๐Ÿ•ฃ 10.26.24}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"try to update last certificate, but it's invalid"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.891075131s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.867120989s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"warn","_consensus":"{pc1p8ngea89f 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1pafen0x39 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.871342834s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.865572935s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.871342834s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.865484777s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.865484777s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.895528365s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882518147s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.895528365s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.861820279s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.85656507s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888932223s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882518147s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.861820279s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.85656507s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.885549533s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.865572935s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888932223s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.879346474s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.911477173s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.861791647s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.885549533s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.8683257s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.870992914s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.911477173s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.861791647s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.8683257s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.876058609s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.870992914s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.900186255s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"warn","_consensus":"{pc1p6h3qjpec 34/0/new-height/0}","err":"certificate has an unexpected committers: [5 6 10 7 8 4 11]","time":"2023-09-06T10:26:26+03:30","message":"updating last certificate failed"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.873892786s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.895471495s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.856502178s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.876058609s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.900186255s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888784881s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.873892786s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.895471495s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.856502178s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.900294752s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.871102954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.911597205s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.885491109s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.900294752s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.871102954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.867054024s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.859210033s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","height":35,"active":true,"time":"2023-09-06T10:26:26+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.911597205s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.885491109s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.859210033s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.867054024s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.864454601s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.907377734s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.879346474s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.888784881s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.864454601s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.880714825s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.8712916s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.864423324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.880714825s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.886778324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.8712916s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.856531307s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.864423324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","time":"2023-09-06T10:26:26+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.89542488s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.856531307s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.876007072s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.89542488s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.876007072s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.883050787s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/propose/0}","proposer":"pc1p6h3qjpecgmzjsfscte0l3ymdx39lnqurzhejzc","time":"2023-09-06T10:26:26+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.876158025s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.85917515s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.883050787s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.886778324s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.85917515s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882643582s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.875950106s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.876106322s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.876214764s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"1.882643582s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.875950106s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.867083605s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.880763014s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.876106322s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.876214764s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/prepare/0}","ticker":"1.880763014s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.876158025s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.885445791s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.879297023s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"1.885445791s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.867083605s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.886729821s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.892779008s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.879297023s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.886729821s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.886141155s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.886688142s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.892737779s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"1.886141155s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.886688142s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.892779008s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.892737779s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.892679755s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.879406427s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.904509224s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.879406427s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.892679755s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.904509224s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.904607809s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.904615s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.907384258s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.904607809s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"1.907384258s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"1.904615s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/propose/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","duration":"2s","height":35,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","duration":"4s","height":35,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"parsing Proposal message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"proposal{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.88882057s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.88882057s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.871052775s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.871052775s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.868278529s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.868278529s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.891087588s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.891087588s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.873844954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.873844954s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.87671264s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"1.87671264s@ 34/0/new-height","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1pafen0x39 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","ticker":"4s@ 33/0/change-proposer","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"info","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","proposal":"{35/0 ๐Ÿ—ƒ {โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}}","time":"2023-09-06T10:26:26+03:30","message":"proposal set"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"handle ticker"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","ticker":"2s@ 34/0/query-proposal","time":"2023-09-06T10:26:26+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/prepare/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"prepare has quorum"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6h3qjpec 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.932980956s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.932965186s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.932864958s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 34}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} -{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"sortition transaction broadcasted"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1pg3yhezax 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.91942682s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.919417962s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.917873573s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.917824257s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.917776014s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","height":35,"time":"2023-09-06T10:26:26+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.917180936s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.917170351s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.917076611s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.917059978s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1pafen0x39 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.916586892s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.916523111s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.915516418s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.915460044s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","block":"{โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p6h3qjpec ๐Ÿ’ป 1EFE5A74DC2B ๐Ÿ“จ 1}","round":0,"time":"2023-09-06T10:26:26+03:30","message":"new block committed"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.915403333s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:26+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.914128085s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.914114955s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","height":35,"time":"2023-09-06T10:26:26+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.912974796s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.912961598s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.912867084s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.912835339s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"parsing Transactions message"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/precommit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#35 โŒ˜ A87E63A905D7 ๐Ÿ•ฃ 10.26.26}","height":35,"time":"2023-09-06T10:26:26+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p24snhmkw 35/0/commit/0}","hash":"A87E63A905D7","time":"2023-09-06T10:26:26+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.91135565s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.91134455s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.911255938s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.911205346s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.90801812s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.907954478s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.907905013s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.907368026s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.907332885s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.907283755s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.906829358s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.906795433s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.906747329s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","duration":"1.906125863s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","duration":"1.906077486s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","duration":"1.906026434s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.902482046s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.902425236s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.902378914s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pafen0x39 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.900467417s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.900408776s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.900358858s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.899665435s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.899593144s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.899545117s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","vote":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:26+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.898848559s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.898794966s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.898747986s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 34 โ‡ˆ 34 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"parsing Transactions message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.898247434s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.898188228s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.898142376s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.89745729s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.897406872s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.897362422s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.896677591s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.896628593s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.896584299s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.895908699s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.895860282s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"txs623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"623F232BCDEB {1: โŒ˜ [623F232BCDEB ]}","time":"2023-09-06T10:26:26+03:30","message":"parsing Transactions message"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.895815415s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","duration":"1.895137426s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","duration":"1.895089387s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","duration":"1.895045951s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.894058664s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.894024377s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.893995467s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.893593065s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.893562138s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.89353269s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.893146669s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.893115713s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.893087824s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 1 ๐Ÿงพ 0}","tx":"{โŒ˜ 623F232BCDEB ๐Ÿต a87e63a9 {Sortition ๐ŸŽฏ pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"transaction appended into pool"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","duration":"1.892703851s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","duration":"1.892674178s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","duration":"1.892645447s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.892199371s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.892143826s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.892094002s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{โŒ˜ 35 A87E63A905D7}","time":"2023-09-06T10:26:26+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","duration":"1.891464837s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","duration":"1.891410197s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","duration":"1.891359586s","height":35,"round":0,"target":"new-height","time":"2023-09-06T10:26:26+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:26+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:26+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PRECOMMIT โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:26+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","time":"2023-09-06T10:26:26+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:26+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:26+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:26+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:26+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:26+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:26+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:26+03:30","message":"our consensus is at the same round with this peer"} -{"level":"debug","_network":"{3}","peers":3,"time":"2023-09-06T10:26:26+03:30","message":"check connectivity"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:27+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:27+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:27+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0/PREPARE โŒ˜ A87E63A905D7 ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:27+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","time":"2023-09-06T10:26:27+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:27+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:27+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:27+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:27+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"heart-beat{35/0}","time":"2023-09-06T10:26:27+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{35/0}","time":"2023-09-06T10:26:27+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","ours":0,"peer":0,"time":"2023-09-06T10:26:27+03:30","message":"our consensus is at the same round with this peer"} -{"level":"trace","_consensus":"{pc1p24snhmkw 35/0/new-height/0}","ticker":"1.911205346s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 35/0/new-height/0}","ticker":"1.932965186s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 35/0/new-height/0}","ticker":"1.912961598s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 35/0/new-height/0}","ticker":"1.916586892s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 35/0/new-height/0}","ticker":"1.917180936s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 35/0/new-height/0}","ticker":"1.906795433s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 35/0/new-height/0}","ticker":"1.895045951s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 35/0/new-height/0}","ticker":"1.932864958s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 35/0/new-height/0}","ticker":"1.898794966s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895137426s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906829358s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895137426s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 35/0/new-height/0}","ticker":"1.917076611s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906829358s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 35/0/new-height/0}","ticker":"1.917170351s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895908699s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.907368026s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.895908699s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.907368026s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.916523111s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.915516418s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.916523111s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.915516418s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 35/0/new-height/0}","ticker":"1.892199371s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.89745729s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.89745729s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906125863s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.906125863s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.896677591s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.896677591s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.90801812s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.90801812s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.898247434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.917873573s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","ticker":"1.898247434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","ticker":"1.917873573s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1pafen0x39 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.896628593s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.896628593s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895089387s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895089387s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895860282s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.895860282s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.896584299s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.897406872s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.896584299s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.897406872s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.898747986s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"our turn to propose"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.897362422s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.898747986s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.91134455s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.897362422s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.91134455s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.900358858s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.898188228s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.895815415s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.900358858s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.900467417s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.898188228s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.895815415s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.900467417s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.899545117s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.912867084s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.898142376s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.899545117s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.898848559s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"1.912867084s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.898848559s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.898142376s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.899665435s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912835339s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.899665435s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912835339s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.891359586s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912974796s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.891359586s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.891464837s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"1.912974796s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.891464837s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.892094002s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.892094002s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.91135565s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.914114955s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"1.91135565s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","ticker":"1.914114955s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} -{"level":"info","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907283755s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","height":36,"active":true,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907283755s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/propose/0}","proposer":"pc1ppqfxuy3hkye86zzp9uh6gvscgwl9zh2qmzkg4h","time":"2023-09-06T10:26:28+03:30","message":"not our turn to propose"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906747329s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.917059978s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906747329s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1psgn080ye 36/0/new-height/0}","height":36,"active":false,"time":"2023-09-06T10:26:28+03:30","message":"entering new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.917059978s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907905013s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.907905013s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.906077486s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893087824s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906026434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","time":"2023-09-06T10:26:28+03:30","message":"no proposal yet"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893087824s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.906026434s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.906077486s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.919417962s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.892674178s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893995467s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.919417962s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.917776014s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907332885s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.892674178s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.893995467s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907332885s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.917776014s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.892703851s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893562138s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.89353269s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.915460044s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893562138s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.915403333s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.892703851s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.915460044s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"1.915403333s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893115713s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893146669s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.89353269s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.893115713s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907954478s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893146669s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.892645447s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.907954478s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.894024377s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.892645447s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893593065s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.894024377s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.893593065s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.932980956s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.902378914s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.902425236s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.932980956s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.894058664s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"1.902378914s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.902425236s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.894058664s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.917824257s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.91942682s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"1.917824257s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.902482046s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"1.91942682s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","ticker":"1.902482046s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/propose/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal signed and broadcasted"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","duration":"2s","height":36,"round":0,"target":"query-proposal","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","duration":"4s","height":36,"round":0,"target":"change-proposer","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.911255938s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.911255938s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.891410197s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.891410197s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.900408776s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.900408776s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.899593144s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.899593144s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.892143826s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.892143826s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.914128085s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"1.914128085s@ 35/0/new-height","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"4s@ 34/0/change-proposer","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"handle ticker"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","ticker":"2s@ 35/0/query-proposal","time":"2023-09-06T10:26:28+03:30","message":"stale ticker"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"proposal{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"parsing Proposal message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1pafen0x39 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} -{"level":"info","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","proposal":"{36/0 ๐Ÿ—ƒ {โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}}","time":"2023-09-06T10:26:28+03:30","message":"proposal set"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} -{"level":"info","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/prepare/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"prepare has quorum"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"our vote signed and broadcasted"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","topic":"consensus","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1ppqfxuy3h 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.908759469s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.908749222s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1p6h3qjpec 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.906617049s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.90660623s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.906512858s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","height":36,"time":"2023-09-06T10:26:28+03:30","message":"unexpected block height"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_consensus":"{pc1p24snhmkw 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} -{"level":"debug","_network":"{3}","from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","received from":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.905854027s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.90584948s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.905758387s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.905685144s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p6h3qjpec}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.894398832s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.894335383s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.894286878s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.891057431s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.890998864s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.890948741s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 35}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.889060201s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.888978477s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.888913606s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1pafen0x39 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.884105233s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.884057106s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","height":36,"time":"2023-09-06T10:26:28+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p38j3r9xm 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.880945586s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.88093422s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.880818733s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.880795609s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.880499482s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.880442517s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.880390247s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","received from":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.878915124s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.878863318s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.878814534s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","address":"pc1p38j3r9xmrvs6qt5pvevj4635l8nrfflxdeql5s","power":1000000,"time":"2023-09-06T10:26:28+03:30","message":"new validator joined"} -{"level":"info","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","block":"{โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1ppqfxuy3h ๐Ÿ’ป 48FA8E123F60 ๐Ÿ“จ 2}","round":0,"time":"2023-09-06T10:26:28+03:30","message":"new block committed"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.876607868s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.876560487s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.876518675s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pg3yhezax}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.875707386s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.875672183s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.875625597s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:26:28+03:30","message":"set new sandbox"} -{"level":"info","_consensus":"{pc1pg3yhezax 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.875188558s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.875182316s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"debug","_consensus":"{pc1pafen0x39 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p24snhmkw}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/precommit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"pre-commit has quorum"} -{"level":"debug","_state":"{#36 โŒ˜ 75DC2CEAC67F ๐Ÿ•ฃ 10.26.28}","height":36,"time":"2023-09-06T10:26:28+03:30","message":"unexpected block height"} -{"level":"info","_consensus":"{pc1p8ngea89f 36/0/commit/0}","hash":"75DC2CEAC67F","time":"2023-09-06T10:26:28+03:30","message":"block committed, schedule new height"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.872491623s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.872442255s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.87236645s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.872337306s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","topic":"general","time":"2023-09-06T10:26:28+03:30","message":"publishing new message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.871434441s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_network":"{3}","from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","received from":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:28+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.871378072s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.871318456s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"debug","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p8ngea89f}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.869685766s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.869626762s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.869580082s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","duration":"1.868208428s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p6h3qjpec 36/0/new-height/0}","duration":"1.868172441s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","duration":"1.86811933s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"vote{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:28+03:30","message":"we are not in the committee"} -{"level":"debug","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.865041736s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p598fm5tg 36/0/new-height/0}","duration":"1.864993512s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.864983373s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.864936959s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1ppqfxuy3h 36/0/new-height/0}","duration":"1.864940547s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p24snhmkw 36/0/new-height/0}","duration":"1.864852263s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"debug","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","vote":"{36/0/PRECOMMIT โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1p38j3r9xm}","time":"2023-09-06T10:26:28+03:30","message":"new vote added"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.862293848s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.862259754s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.862230581s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 35 โ‡ˆ 35 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.860277394s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.860229153s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.860179277s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.859568714s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.859533883s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.859486686s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.85696088s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.856912367s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.856871944s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.856082991s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.856035635s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.855989063s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.853454962s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.853408398s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.853368982s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","duration":"1.852583859s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pafen0x39 36/0/new-height/0}","duration":"1.852536852s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p38j3r9xm 36/0/new-height/0}","duration":"1.852488155s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.850175652s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.850128898s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.850090065s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","bundle":"block-announce{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{โŒ˜ 36 75DC2CEAC67F}","time":"2023-09-06T10:26:28+03:30","message":"parsing BlockAnnounce message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","duration":"1.847452564s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1pg3yhezax 36/0/new-height/0}","duration":"1.847395701s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"trace","_consensus":"{pc1p8ngea89f 36/0/new-height/0}","duration":"1.847347142s","height":36,"round":0,"target":"new-height","time":"2023-09-06T10:26:28+03:30","message":"new timer scheduled โฑ๏ธ"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"broadcasting new bundle"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"broadcasting new bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"parsing Vote message"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"vote{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} -{"level":"trace","_consensus":"{pc1p54qca6v4 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"parsing Vote message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0/PREPARE โŒ˜ 75DC2CEAC67F ๐Ÿ‘ค pc1pafen0x39}","time":"2023-09-06T10:26:29+03:30","message":"parsing Vote message"} -{"level":"trace","_consensus":"{pc1psgn080ye 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} -{"level":"trace","_consensus":"{pc1p6qk3axu7 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} -{"level":"debug","_network":"{3}","from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","received from":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"receiving new gossip message"} -{"level":"trace","_consensus":"{pc1p9jkm6rms 36/0/new-height/0}","time":"2023-09-06T10:26:29+03:30","message":"we are not in the committee"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0}","time":"2023-09-06T10:26:29+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","ours":0,"peer":0,"time":"2023-09-06T10:26:29+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0}","time":"2023-09-06T10:26:29+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","ours":0,"peer":0,"time":"2023-09-06T10:26:29+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","initiator":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","bundle":"heart-beat{36/0}","time":"2023-09-06T10:26:29+03:30","message":"received a bundle"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","message":"{36/0}","time":"2023-09-06T10:26:29+03:30","message":"parsing HeartBeat message"} -{"level":"trace","_sync":"{โ˜ 3 โ›ƒ 36 โ‡ˆ 36 โ†‘ 36}","ours":0,"peer":0,"time":"2023-09-06T10:26:29+03:30","message":"our consensus is at the same round with this peer"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{3}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWRnzSNs7RoyUJvpJCVkf6yeiGoXmGqSodDvG6MASGaDLv","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{2}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{2}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/35079","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/39254/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{2}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWRzqCMYa1ombx1ddpUpK3U9e3TXxdj8XP5sb2tE2agStQ","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{1}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/40649","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/59227/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} -{"level":"info","_network":"{1}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWPY4do6Pzo2Hq7LVVHags9BS3W9UTxU378zC5CobsZ1DA","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"info","_network":"{0}","PeerID":"12D3KooWFRrJJtdCjLBek2dGHQ7BaMRuZDAmtmpKmcoLSgtAKdQE","time":"2023-09-06T10:26:29+03:30","message":"Disconnected from peer with peerID:"} -{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","err":"context canceled","time":"2023-09-06T10:26:29+03:30","message":"readLoop error"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/udp/49643/quic","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} -{"level":"debug","_network":"{0}","Multiaddr":"/ip4/127.0.0.1/tcp/39157","time":"2023-09-06T10:26:29+03:30","message":"Notifee ListenClose event emitted"} diff --git a/txpool/logs/pactus.log b/txpool/logs/pactus.log deleted file mode 100644 index c77e67eb9..000000000 --- a/txpool/logs/pactus.log +++ /dev/null @@ -1,1633 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:13+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27A2F13C4C1C ๐Ÿต bb284698 {Send ๐Ÿ’ธ 000000000000->pc1pmhfa5uzf 25000000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"trace","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","id":"27a2f13c4c1cd544cb58d1f30a398c61158f9114905ea3ea3c797172a0045ca7","time":"2023-09-06T10:25:13+03:30","message":"transaction is already in pool"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:13+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B65BCF649BA ๐Ÿต cb895125 {Send ๐Ÿ’ธ pc1p0d0h65wl->pc1pe2zquhj9 5095763756912}","err":"invalid fee: fee is wrong, expected: 1000000, got: 1412074042","time":"2023-09-06T10:25:13+03:30","message":"invalid transaction"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:13+03:30","message":"logging configured"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:13+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22837CBEA034 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6fvk779k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54B266167470 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfs8vmvjy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 3 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC7EAC96614B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdukqknpg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 4 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC95F8FB9412 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcrvdpfmz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 5 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD6077CEE0D7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pru5hryx5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 6 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F025947B1A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptusf7kqt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 7 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F10CFEC0C1CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvrt7qhm5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 8 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 995C12E2A9D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn0dl07sg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 9 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5086F78D0916 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfm222dcl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 10 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B9E87DCEFE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjlkk899t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 11 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A17CBC4150A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p60d3aqr7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 12 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C8DC04E732A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8yf3xmez 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 13 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91862F125B28 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phlyj9e04 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 14 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3277290E1082 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plj333sth 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 15 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2D132F857D69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phyckq4p2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 16 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58B5EEC2AA5D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phjkcxlpe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 17 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1A8C85D8810 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2x9uhsu5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 18 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B3271E1E1D7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9x45h5e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 19 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F58D96F938FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd8xxam9g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 20 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D373E9B9936 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p59exwsmn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 21 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C438173686D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvnymgqf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 22 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0141D865B77 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5nt5sjvl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 23 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A918F9FC5FDA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp0s90v4u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 24 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF23436E0F7E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phsvjkk6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 25 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A0146DF4C6B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9d5ejpmq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 26 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9393E5822167 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prfj7dscu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 27 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1592C3BCC71A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyqvxryqs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 28 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8264C675BD24 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnf7zrfjt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 29 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0AF6FEA8A4C1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf29a6xgw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 30 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 18043D6ADCAB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe3r3m6hh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 31 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E029A1BA55D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc85hyvz3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 32 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 18A3B1B16E52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p94zxur4h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 33 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AAC37EA1FAC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7qr56c50 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 34 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE93EA76F8F4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prkxxfzes 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 35 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7287750E8825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p23a9hpzu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 36 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CF2BD90059AE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0aclguwn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 37 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 37F30908A266 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppz4l4y8c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 38 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F6278A021A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdd39x7w3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 39 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEE9BDFFDB20 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv3t93ar4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 40 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DE7EFBF16D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqlmz85jy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 41 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 62B9C3D40C52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8l00xgwg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 42 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8184611B868F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4tyfuwwu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 43 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 643B3752BBD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7vl0gymw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 44 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DC33B79428B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa20aw9vz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 45 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 255000735415 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppezyyzan 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 46 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42D7C9A8CF62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6hva3emk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 47 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 571737C9CA54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnzpxsz6y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 48 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26E21DBDE16E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkknpc0yu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 49 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB4649E067EF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd7pac5nu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 50 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F935BE8AE1AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa08yvl6w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 51 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC5700BCA2FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk4gtjlj9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 52 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 511A70AFAF60 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pct5qypmr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 53 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1C9E1745F6B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfaye4sx5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 54 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E3F9D94B24A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0dy6wxrw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 55 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79283E07538F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1payk2h8j2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 56 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F427369C358F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz7sc9z5x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 57 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09AA6DE1F353 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6yguw79n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 58 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA1C0DF654E4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prz87p9ef 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 59 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70FC76A82D3F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2h3uzc9u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 60 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AA346E25A15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6xnyttjy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 61 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD3DD25E9283 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p22d8dm83 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 62 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E39D0F57FBA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9jl4kqqu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 63 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FB1C25028E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr6dz45we 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 64 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8F8FD3A5D412 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4gln3p2y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 65 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F74FB8F8E65C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp0c0cq79 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 66 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 918CB4633DF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3vsanege 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 67 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99C1E08D42A0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv3jsp92a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 68 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99D2C5D0EB71 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf03l8k6e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 69 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01C21985E161 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl4u0my8n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 70 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 042962303335 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvmmkslm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 71 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C0986F0598D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pph7dupzt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 72 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C010403D7AB1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4m65ew4d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 73 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C98088CF40C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcxkt4kda 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 74 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2553580013BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptgzkynh7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 75 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 496C126C174E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyg7gtkry 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 76 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 404B3079F26E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6kcyzzlm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 77 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5A6BB972702B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf5dud9at 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 78 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 306C176B9074 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph4xh26td 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 79 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEED891E5346 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu5l0q63h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 80 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2D996C343709 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pugy7y80l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 81 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5EDB2EBF865 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjnlau8ln 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 82 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33C978BF715A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwhmmzk89 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 83 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 285D2343AA36 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plu42g0qg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 84 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 56D52C57039E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pefstwx9q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 85 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C823E530348E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxx56rmc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 86 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 68F88E0E47AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptk3frjsj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 87 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7BA437388F8B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskj4qp8x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 88 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FD9F5E86A10F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqmkk37xt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 89 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EE3EB8D3F59 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqmuv5ap4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 90 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B572E40A67BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf8jtvzvr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 91 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79F78A1D3A13 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppjcxpzy7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 92 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9431992AC3B6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfp6f5u87 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 93 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3C366E53BF6D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxrnr3zj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 94 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFFC5DD27BF5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwpyz57w0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 95 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CEE6CD8F2633 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj6yqv6wn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 96 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA548CD017D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm3kvpvy3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 97 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DBED113F2396 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppflht6lw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 98 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 165156876141 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgpgvne2u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 99 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87886660C59D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pajyq35wa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 100 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5E2B85E383CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1perrz6c54 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 101 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 89D1FE944A6A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj7cjcg2l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 102 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0BBBFC2F2972 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prr3wvhfv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 103 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3907FFADEF5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8xevfl9n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 104 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3FC0DD2E6580 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxemzcms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 105 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC9780312B72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pff2pykh7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 106 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92DEB18CE857 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa7ejnrtd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 107 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E6D777552C4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsrfjg5p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 108 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 415D9C912400 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdda4thxp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 109 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB9B673257B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkc4qxsxt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 110 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D969DE12A30D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pla9kz5pa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 111 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1AA8D286694 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psfuqemnh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 112 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3627BB786F49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py530n6fn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 113 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFC655B3924F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm6ckfkgn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 114 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E9B0C3080B8F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pggle88vf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 115 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FDE6EFAC534C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pntxrvsvd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 116 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4C5811E0E7E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjp7arhyd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 117 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5CC8CD1510E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ev8g8px 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 118 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01BD8FABB266 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps443navg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 119 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CD9CE6EFBE1B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn66yms7n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 120 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9220300891BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzpnyx0xm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 121 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A146BA928D89 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpcjlnww 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 122 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 817218D339F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4xc0qh5e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 123 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B41E5246209 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg359c57x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 124 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC1A575E2D55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppvahjt9y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 125 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2E87749EEAC8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxrza2u6a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 126 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5D80BE5024B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p22lhnqel 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 127 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C4DA9D6A28B0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc5ggena3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 128 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCE93A0047E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p230yqyqp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 129 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBE23AC244BF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p47q7lwkz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 130 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D395B33CFD92 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1perattxme 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 131 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 341E2AF887F2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ch8javf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 132 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 459631D4E833 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89myttad 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 133 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E1AF039FA2BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6fcwa980 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 134 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47593DE41A86 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnfr8tyut 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 135 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AFD1464B20E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyhc2h8j3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 136 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D285F9E450DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p65zgn9ge 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 137 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88D7B7CF96F6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2jfa3up5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 138 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 887B3B4A801E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwehr7ujp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 139 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FA53619D2BD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6heahv4c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 140 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72C3CCE29509 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p57grg8lu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 141 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A37E1C7C16AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phsdtuq6y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 142 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E9447F06A19A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk8fvlav4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 143 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4018378F4D95 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwxlruz57 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 144 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88B09C339505 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf8x2pwc6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 145 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70E0D452E905 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq0j5etz9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 146 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7479C5B7CA48 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py5px2gek 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 147 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 56581C17B7FE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdntqm3w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 148 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F4881C415495 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prarkca9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 149 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 39B182E93C2B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptc7h9vhn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 150 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 241C16A0D091 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxvdcsjq7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 151 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F12BFA9B06E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf5cyrql8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 152 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0A533B01E05F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prpzcuwa6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 153 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7C5BDAD66D26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28mm5z7j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 154 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E4973AC8D519 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pss09325c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 155 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 77C052CFA5F8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdxt50dhx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 156 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 930AE14BF116 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papxrwvc2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 157 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 30B9D606F084 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pevw8n36j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 158 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A7B0435C448E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px9fl7828 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 159 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 11EFB52C4D6B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7wjh0jww 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 160 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6BE82B45E5C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwawnc53u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 161 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BBE3411EBC12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmadmqlkr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 162 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FDEFA6CCADE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6ggzjxc5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 163 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7A0C0D8E2D0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyt50l8uc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 164 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B78859C7A4E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7re4ppgr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 165 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DFF70E327AE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pffa0yd8y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 166 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A332CCEC671B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdsue68yw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 167 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 862462A7F1E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzat48ajg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 168 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DFC93CE3ACE4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4f4dnje2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 169 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0A3104687F49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7axt7v9m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 170 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0EE232E4B192 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6xam9965 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 171 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8DE1DBB7FF7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwp287xj2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 172 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8588D414EA53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe4trx0lq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 173 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FCBAA0F6AA1B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgqn0d9cc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 174 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AFAF4E5BDD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psgrgz3tf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 175 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F6A45BC2A099 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwrnsmp6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 176 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 932ED5B96A3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plwl2hz5v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 177 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2E2834669C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyatdaspw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 178 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E979BAEA59B6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3xr6ynnn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 179 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2412B155C4FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptg6cj0wz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 180 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C2D9F77E3402 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd6cy0uat 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 181 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 990C06749CF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p64tymath 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 182 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE6B6C1673BF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj688ltlw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 183 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC8CBB013A18 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0j2m2p3e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 184 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86948600CEBD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p90ua2m7r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 185 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F7498403DA8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8fyl3flq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 186 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8515DA1181E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkrlxcfae 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 187 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3D2B65DF090E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p06w2f84l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 188 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DF4B4858A3D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0awlpvrc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 189 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6D87809D75DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdfy76j7y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 190 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD63088DFC65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9aw3lx22 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 191 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EBB002D0DFDD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9mjqmdj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 192 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22F9783A4D33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pex286jpy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 193 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6136869EB967 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pup2g96fv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 194 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8328382012BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plz8q64sz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 195 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7E40FA14A4A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p04036q44 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 196 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6064C5280DFC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqxxzpmt5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 197 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0B8A652893DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ndeqhtx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 198 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 703B3926DE75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppqsh3yxa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 199 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9172909E626 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz8rg8d3d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 200 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A405C1C99E1E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph97kerh0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 201 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80E7EEE3167C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8qgnpdpx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 202 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A9E08A6365E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0wmnllqn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 203 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AC5AB8C05DE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4mxzpevh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 204 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F79715284F53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p574jjpte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 205 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1823F0DB3D8D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjh983y5p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 206 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F98AC8B3915B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph06wwk40 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 207 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0E3C50DDFAF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8kpxqrkz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 208 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6B3C9EF33387 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5hf0pu8k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 209 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6637F0CB66C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p90m8xa9w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 210 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B5AF639381CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptcagm6h7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 211 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 901A498E5FC6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc9z7xpmz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 212 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F16CC3ABBFA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prj89x8hm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 213 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AE793995649 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plhpup3v6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 214 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6D95CE8AE205 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prf8g54xa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 215 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0186D308C95D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd0wp30na 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 216 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F725A8CC919 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmgs876ld 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 217 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA7334A04FAE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8cwpuf0e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 218 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A8DF21E6807 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pefqglcyj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 219 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4ACBF82FAD8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5t5tpugc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 220 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9347ACD8C54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phcvm44tg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 221 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CA41554BCCE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p886te3aa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 222 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 080F8BABDD3A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyae6gexg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 223 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 175BF590E42E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxpc8kwcx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 224 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 940C88CCEE8B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7jlr0ddp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 225 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE0C328970B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pss8k3mqs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 226 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 242EF6298EEF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hkhfpuz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 227 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4DCE392CF68 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0eallfw2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 228 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 93C4C3B139FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4e7gq7t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 229 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72DC57DF8B56 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prc5fgc7w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 230 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 335658EB19B8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnphced2c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 231 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67D3DF967180 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pearf3s0n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 232 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE37D36C5F15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd2g9kltd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 233 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F96719A9F81 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p56yw72wd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 234 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 62697E865A0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmhceg64w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 235 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 646E27EB0DE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3a7cmdml 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 236 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA64A3A530A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95xf5z0n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 237 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 778B17E4C574 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p74zaca2g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 238 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7786EE1D987B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5syulu6w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 239 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 93681D4529AB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p06rs7k0e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 240 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0B07A9901F06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pezk8hnqk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 241 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 438E5B17E7E8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppxkfz9pl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 242 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F339BD2803FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puhx3gw00 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 243 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 490F4F898D66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk8xs3m9k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 244 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 411CB6E1E594 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfv2lcvsn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 245 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D021B6834726 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw2cx8jfd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 246 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6DA3F4F8A2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puulz9vwr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 247 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8772473FF9A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmmefm2j2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 248 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C8A85C5102A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp45aljx2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 249 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B9CA28E55BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxxagw3qr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 250 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F1365F17C29 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2f429fy0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 251 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA4C95592D52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puvz508mt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 252 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9DA54FB02B7D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7nyhfj0g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 253 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D20907FA454D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcl02ukuw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 254 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B29FD5CEEFD8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgusfflfc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 255 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D01EFBC14E8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6gerrm8e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 256 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A696481D2F62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpv2jkfj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 257 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ED92A05BD247 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paxmt6vxs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 258 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6ACABE1F34F6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pge2uk0l6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 259 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28623BC75D8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9lfvqema 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 260 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0E40480BB677 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnzlkl3wq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 261 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0A6831B8C6F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdpgzauca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 262 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4B5790C2AC99 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p46cazpuf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 263 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1CCBB5BE077A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5pkhrp59 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 264 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5A45943F0319 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pakejj8n4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 265 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD2201AD448F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn900qsh9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 266 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DF83B415CF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3xtv9sze 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 267 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FE5E872A20C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w42xpua 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 268 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B48B84C729CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py3r7jn77 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 269 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67D8AFC2C869 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmw4zhmzy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 270 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3D083985E8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqan2r4ah 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 271 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E887D28E197 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papvjgjcs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 272 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 748FC25822BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3gvjuacc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 273 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3669195A642F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps2phh9fq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 274 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90DBD9B6C8A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkqdaaya 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 275 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4C2C8F3D30E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3zmnjxrz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 276 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AD5C6E34DA0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc58vl27v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 277 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F1C2B8C407 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6d430tdr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 278 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 674B4E31CEDE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ns3ltzx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 279 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 38003A151495 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmrtsd464 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 280 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 29D94F903FF9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvrvwnugk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 281 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8A314B37C2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psn8nh93s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 282 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5EBD9C1D6905 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppc4vpatu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 283 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 427DF1419720 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pecwsz3g4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 284 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2704F15E0B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0sa7wfhu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 285 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8BD782604E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfhs2wjzs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 286 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 232D9239A85E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p34cej76f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 287 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F1101CAF966 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p73yt8hxv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 288 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DD0A9831FF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph6aw3zms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 289 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76EBF184B694 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2k74p5x8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 290 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEF928707AA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prshmcsrq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 291 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FA057D6559E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjz9sd04d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 292 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8FE6D46BBEEF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdtj9l6fk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 293 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0EE8922667B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcvqgyml 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 294 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 25C2B1CD8ECE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkwle32ke 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 295 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 776F7CE79B4A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkesymlqe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 296 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F303235D6DC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9wmafu6k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 297 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B72453A60202 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptuu3gltd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 298 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 504F43FFEECE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7p8ktea3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 299 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 20CC2B7371CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe8k90fmd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 300 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BFDD797CEE92 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p03evmafq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 301 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 04F5FAA1F32C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p746vxsrj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 302 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E96CE7887C5C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvlqx77q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 303 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 563050A743E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p630ju8gs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 304 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EF100406462 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pptgwsq4q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 305 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 105F48B03E5C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p660dj2cm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 306 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B738C6C8E26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papevync8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 307 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F9817970F08 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pekmlz547 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 308 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EF78942DC3F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4m8s08hr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 309 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 53E7815A95AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwl8wzdhu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 310 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5EA628FFB195 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pumn3xeur 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 311 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9527FA46D54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p35gyz6pj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 312 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E00C07589DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgp372z78 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 313 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5DDE453887B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4p93pwh9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 314 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8434A25B7FD2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskudhlnh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 315 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F94DB78142B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa5nxyst3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 316 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B05A083A40D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmxv4ckz2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 317 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BB0B8EA5637 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pasa3kl80 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 318 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 65ABC1AABC9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptnhhlqa8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 319 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C623F7751313 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvzxdeat6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 320 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D0C6A0E849A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pswupgewk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 321 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E74B5C1222D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptafjry65 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 322 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6DB2F059CF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pawnuu644 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 323 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F6521062C65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2fg5vzte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 324 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33CDFDF3D335 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps0sx8unv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 325 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80C922C9DCCC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkwh0ztfg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 326 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F46B0948173B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4h72kzwy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 327 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E03EA72B1271 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prw3v8gp4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 328 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4473DBC18B22 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzv7xvc05 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 329 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8009F7D3424 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqjmeva56 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 330 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 726B38438110 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p32yysdp2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 331 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB8057D35A87 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwggvdqld 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 332 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 599408EED363 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pngynqh0s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 333 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC3607A39DB2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvkzwq5p5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 334 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E6E32E596B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskjpmye8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 335 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA9D40E03E64 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwqswq434 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 336 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3D80193E3E0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn22sdq4a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 337 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7465C2F52404 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk06amu4a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 338 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 59660BE76657 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plfe883qv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 339 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD8D582FD832 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz3pghxtx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 340 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 330C55FB17F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzdsnxy9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 341 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD7A1D5DACD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0a5u2uj3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 342 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7461F7F0880 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54kf8p0n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 343 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E7B1264E01C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwk5vkfln 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 344 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2B989265247E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptmre4hv8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 345 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 06DE3DB54492 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pffm0j3jn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 346 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0312A1614435 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt2tx6xrn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 347 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 597FCCEBAEFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqk5wusea 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 348 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E90858AA604C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzvjghlsh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 349 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4ED55BB5918F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4ekdtsqz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 350 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7CCDE7D5B9C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr27jvevq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 351 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E3EB4F39DC9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzl3d2yls 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 352 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80D8FAF0A536 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7zy4rahd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 353 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 171A395E1A6F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdydhqsdn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 354 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8771CB2579AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyl95c5zw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 355 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42DCFDD2A8A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc402k37v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 356 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 10805612F115 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc0k82uhm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 357 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DA546C5D8A57 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plnuzu0de 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 358 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 179C5F9EAC02 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdws78pe4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 359 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E0E2A9873F2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pygmw4dhm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 360 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F58F598E185F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcl7cjhvr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 361 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34AB22FF1AC5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgyvf8l8j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 362 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0C0726CF27F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pppp84m9x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 363 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C0C09EBBDA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqja0v7yr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 364 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2A214D7215C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9r93905r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 365 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0596272B9EE2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwugfh503 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 366 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E63D3626A1E6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plyeq9rw9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 367 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 026F63D0CA66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p36048xna 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 368 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DAF30AB3F656 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxjx5kg47 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 369 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F9478B1803FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plcc2z8p3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 370 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 51B015249513 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prqajtsja 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 371 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 873EFED65338 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt3m7uxlk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 372 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49C2F7DA7BD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p69k0xjpe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 373 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CBE0C0C38B49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxfkvsk33 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 374 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5BEB66B61AE1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfqxufcl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 375 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 570E8D7251CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pll28z5e3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 376 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EBAACB51834 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl480arll 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 377 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F04EA849189B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puaf33ckg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 378 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5118B1632196 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0juk7k6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 379 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57A7E747D32D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p20eczuzg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 380 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F332C3B19EE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3l8hx40 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 381 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E19502936852 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkujhd42s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 382 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 74037245E585 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm3j09mq9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 383 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 46A65EC3ABC0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm0s6cjn4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 384 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19D5233E8599 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prmdzu0tl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 385 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D91B4ACFECD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phpjnxuyc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 386 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 739961F28185 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwu466jnj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 387 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A3399A025D1F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj3p37649 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 388 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0E4DEDD9C51 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pakl3fwzf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 389 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6BC31AE9461 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvdsfp6zp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 390 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1A732693C9F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3dkyzgjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 391 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C4DFE088CB2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvqfmcee9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 392 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 142230D29F05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqhxjgjnm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 393 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 23F3B6CA23DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p029ely9w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 394 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70CD9165B071 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps9792hjp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 395 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D61FF28D1F19 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwl6tmn7z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 396 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 82ADFE360EA3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp5v55qhr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 397 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 007318F1D5E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzq7drw3z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 398 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76360EA82D14 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd4r7jd97 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 399 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7D7572F8009 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgfaaanz2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 400 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 428E08638D43 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf9j2jqaa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 401 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 319EDDEDF6BD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptewqjfjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 402 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1066105EAE17 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkwrne7r5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 403 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E90766EF1F40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjfd8h7ps 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 404 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 062EC219E20A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9lpsgw8p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 405 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C72636DABD59 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq33wq2d4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 406 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EFEAC10968CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p989r7dy5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 407 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEE437692356 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdushj3qw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 408 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4B880353DC0A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph4vzk7wg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 409 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2E38F5145600 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9aflsh2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 410 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2760466AB334 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr5rmfvke 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 411 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 82F8CFAF4481 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plrgzzzu4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 412 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 302D51C4AD01 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8lkv2d8v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 413 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E46327433E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqnnlnuhk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 414 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DFA324A131B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjk7jmxt5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 415 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03EC1A0E7ADA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7q4vrv7k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 416 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99320333FFD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwag64fwf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 417 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C242F5A07427 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq5l5m877 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 418 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 77183E035D45 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfs2m7m7w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 419 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 539096959397 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv0aarwww 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 420 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76AC37ABEAA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p970vzl0h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 421 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92B4218B92CE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfga5y86r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 422 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E143782DA710 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phdn84f92 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 423 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A989EDED6A39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p44ct05ka 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 424 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AC7CD2D6DF78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2j8g6ayn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 425 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 005F3E2338C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pccglfqyh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 426 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A50EB540667B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7u9hn8m4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 427 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F60C64038B8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgvwsmrjl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 428 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 93B0506D9951 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pah86fhdr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 429 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8D4CF068DDD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk50xdz67 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 430 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E29FEF72CD0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvgry5hv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 431 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6CC42A837330 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl2dceepf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 432 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F04EAE147BC2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcphpy6c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 433 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E346B5991064 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk3pe5mrz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 434 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88127981C2FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8hzvxf9m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 435 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E085D805BF9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc7fs7nu4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 436 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 97C0E2B2B1A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pck08z6s9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 437 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7B608E03B9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2jzww2sz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 438 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7E49A172055 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puyc5qykw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 439 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72BA556C9606 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfethw925 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 440 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF6532535900 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmja7v2nr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 441 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FAFC927269DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4qknqzp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 442 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8778FB5AFD62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps8tky48s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 443 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67779C1DF958 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prre725hc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 444 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B402985E961C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkvcgr4gq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 445 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D986B86B85E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc65xkvya 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 446 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F95762AB571F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmzd44rzm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 447 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 353CE6C97EA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvgkqsd5t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 448 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FDE0BD32A0A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8gdql3k6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 449 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 824D6BEC894E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph8xqhnur 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 450 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FCEE47A2F258 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwu8jlz2k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 451 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76911BA174AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2c0rpjca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 452 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 594D1B66BAEC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw8pt4m7z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 453 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3034B82AB692 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc2ye8hlq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 454 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A780090E98E0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe3lhsr88 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 455 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8520E80905B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk0wytash 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 456 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 254D13CF7A88 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2suu8s3f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 457 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86D54BF97E40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq4ujtdr6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 458 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F7825D7D8430 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9zw8yne3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 459 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36A7DE87EECD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps2adwq29 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 460 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D295B8784700 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqzq4gasl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 461 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C97851DA053 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p79e9qtzz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 462 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B59DDC356CF9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkt7eqscn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 463 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7461FFE2F25D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prs5wkcea 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 464 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36AE1D8F1DD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyyjk0m2g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 465 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 04A9007C8B88 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj5g2hpnh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 466 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DF85F68129A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p00jyuu9g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 467 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C48FD78BD8B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcsgez892 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 468 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F75F3EFB46A9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv3et4r3v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 469 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79984AB19B39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pknrc02z8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 470 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5636B53F94E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk0da6mu3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 471 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47937BEA3E85 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvdaawztt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 472 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E96E2DC26FFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjxuxscv9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 473 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A0BD459C1BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paq0fqsah 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 474 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EAEE5FB89BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzs5g2nk6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 475 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22D69F128870 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfgt89fy3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 476 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BFCF24618B44 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phw7y2g47 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 477 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C3F65DC205A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqmvxuguc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 478 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2062BA16B05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdnzjue69 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 479 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE9F840F835A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptz8z4waa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 480 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D68E84CCDD7D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p68usdk0q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 481 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7238E059E0E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p52jg7yp8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 482 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 45FC88B30544 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28x5tnsu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 483 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0CC88FD8CC0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvhmsf0dc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 484 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8A741893F6FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psxw95juw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 485 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01B3885FA908 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psuattr08 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 486 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7090FB14E89A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqnuwh8zg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 487 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2154F419FBAE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnqr442xe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 488 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D473E4622B5C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkalu39t8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 489 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AC2BD56F39E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8mnvl86k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 490 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B15802D0AF58 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puyfcuedn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 491 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFBF0277CA5F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe09szw3p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 492 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33B0DB819DCF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgqwl730c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 493 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE2651068489 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk5zegre6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 494 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C0C838A3032 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqw62rga4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 495 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0E4A7CB37A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxpnylcrj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 496 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FB7CB50AA2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2waq9kzy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 497 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1B2707FDF06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg2a8pe5h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 498 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9306E064908B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8ndvntf0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 499 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F56A6961ABA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmqtwakfx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 500 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CEDF51F3A780 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxxqatnjw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 501 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9FB0450B5406 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj6v7vqa7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 502 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8E6C5C89EEAC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmth98tr5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 503 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B02709C27D07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5wvwsdpv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 504 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40E97AA2DDFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3shjradw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 505 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 81759070BB2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plev6v0el 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 506 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF0E5FEF52D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phy8arayu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 507 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 256EEEB47531 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgpeug2zf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 508 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09DCC35F021D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pykev6hw7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 509 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92212F333336 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9ns9egqy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 510 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F73BF8ACB14C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq6p40yk5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 511 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 915144ED6A0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p568d0ls9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 512 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 64066E0E5AFC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psk7fsm3h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 513 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 186DE2ACBAA7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px4n2jsv5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 514 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DE9047A57B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2sn92zll 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 515 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3E0E26A02F11 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxwpu00pq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 516 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E4A12C962236 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pufnrxhqy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 517 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C69DC16A369 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phsregkqa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 518 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8775663E82D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk3nc3uew 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 519 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9753145342CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0au6nq4l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 520 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9674CA8620AB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prr38ap24 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 521 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A3CF29D12F33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psm0fk9a4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 522 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A383B47A51A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk948vhl8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 523 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 742133802DD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p50wj3vh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 524 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9B002BFB619 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjyyraxy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 525 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A805961C7710 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phh04vtpd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 526 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E7A90349A90 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3c77uml5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 527 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91E7C5439B2C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkxpzsmxn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 528 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D38812B33C3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc4ta55j5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 529 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 345554F8B07D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvkxwf7c3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 530 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C0FFD6D599A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnu29c37s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 531 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F921E81B5A6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppneh05fy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 532 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 153ADFD9DBE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc3whp6v7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 533 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 065FDAE30D65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnvsnwfka 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 534 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47443745E189 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plt4j4huh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 535 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C23D7E9B09B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg6pfj70n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 536 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57FF4CD9DA2D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppv0ghu5d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 537 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB9E68C1902F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd2stvd9e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 538 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2213869620E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsgnywk9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 539 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8344942010D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdduv6hlm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 540 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31665A4A5CCF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5d008sgz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 541 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E69797FE708F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj6tgwl0f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 542 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0E2408288CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz0gk2ytp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 543 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C5B340C0271 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyfrfgvsz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 544 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B40B9508DAA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plgqhzzjw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 545 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 537CD67B6D3E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw2umh5xz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 546 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EA0F1523EF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu73r9k43 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 547 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 63EF1DD73AE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phcc8e00r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 548 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 081AECD0AC49 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8r4tja5a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 549 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F9B23447199 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnxqrr730 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 550 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 37CD33079C0A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7676n0st 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 551 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 23D1B1F5EE34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psc53sr93 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 552 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8A7556CA31D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pynn7hyw5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 553 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3542674C9AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pshndp2v2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 554 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0DE6226480A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ydsew4h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 555 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8E63B3F83095 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7gqau720 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 556 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9186B61F6C0D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p80nmug6n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 557 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B348574B20AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8jptvmmq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 558 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 110EA9619320 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phgmu8mg4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 559 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D821F733D12A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0xgyamca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 560 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C5EC2CAEFF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prrfrjz5j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 561 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D08D6AE8150C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5plg78vd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 562 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8D64C0B5008 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmunt5wfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 563 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD4472D39554 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkvwhgkuf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 564 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8359B98D1CB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prdxra49g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 565 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 83EC0791B088 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwy4dyeg5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 566 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 159B926E793F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz97a5sny 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 567 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CC735A86C6A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps733gy2c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 568 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FBF7600452C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p78ckfp96 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 569 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C338B54EAF37 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw8dl887p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 570 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7EDC956FC19 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnrxr5pqr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 571 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B92000674A0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2zkf6zf7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 572 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3258A07AE373 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmnmrsg0z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 573 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA373FDABA55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn3584gz5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 574 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DE3F7F0F661 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5029gllx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 575 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B4550ABB8F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcpdgfnup 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 576 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7AD594EA1B98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvcs8yqat 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 577 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3A0305966BFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptr4g0gjk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 578 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C5CE8A096E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn8y6jw66 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 579 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6B4164EA6E78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0h5va9uk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 580 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8ADD487C190 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4222dep8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 581 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CCAFD684D4D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plw0cc8t2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 582 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28E14763616C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph5z8qngu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 583 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7540AC521133 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2mlt7tjf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 584 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 713820ED32C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdxjwdncm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 585 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A768198F0C05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7687c0vq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 586 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A68266A79F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4ca8ka98 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 587 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D97BBA7C1A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psesj7fpf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 588 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E66FBB31D71 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe43hcjhp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 589 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E626F69481A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd3w730km 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 590 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36018D072CCB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzs620wed 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 591 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 962C4B882013 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5rddjwhc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 592 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E70B43ABFE35 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfzghtnvu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 593 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7A2D183DA6D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8tlzmhuf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 594 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E3973747932A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv73cpxe0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 595 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3FECB365A04 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa5lw5cds 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 596 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EBFD6B7B2A53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p637jql8m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 597 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2586B770FF9E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8da6h7e4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 598 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F02577348F38 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peedlle3r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 599 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C6A3A01E511F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peazngh40 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 600 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DDB1F554F63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyxxjj6p3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 601 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EE1B28E10983 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2x5t9u77 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 602 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31164095EC47 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxv93qk6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 603 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70DE8D65935B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pue65m5y7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 604 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 13424685AE40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9hhp9gq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 605 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 780EAB16892E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu46x3ash 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 606 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FFE31618ED17 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa4lr8u6w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 607 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7C16DE036948 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn3rpvga4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 608 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB581EEF4F63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfgjajest 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 609 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9FA33E5C99D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxt9ed4ge 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 610 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A52A799D37A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps6m55c85 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 611 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 24F66598BB36 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmsp5t0nu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 612 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F7ED0022E3A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgtldjwp2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 613 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6B7A9017F5C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdz270j2r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 614 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 96344AC1D3E6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnz00vm5w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 615 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E15FCD1ED34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prnlgyssv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 616 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 050EA65C43D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl08c3snr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 617 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A3DEE2ED2AA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph0aau8gx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 618 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3629E9A343D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p96gf3rv6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 619 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87E0FB70D018 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdw28zngu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 620 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85F36AAD8D23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6uzn2msz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 621 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F492CC2743D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ln7ptyp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 622 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB5963269EC9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwvxp34fn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 623 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 729E4A40EED8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmx09spp9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 624 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5C27C6ADF5F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzd6fk4py 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 625 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6EB1369D04D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqumxxyce 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 626 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8F3664488E32 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py7k7hg7m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 627 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F77E73CD098 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3wyfy9sz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 628 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79E6065FB2B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p43rpd9wn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 629 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 44DE8E4505BE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm6gf6v2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 630 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F6EAFF782C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwg3k6nk0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 631 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F78FFC97646 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4gr3svxa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 632 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B71F061A0BB0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pclauu4pv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 633 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C38799E2877 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7js9n5nw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 634 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE424627D3A3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd7ypuu4s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 635 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E151B754FB54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfevnnje0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 636 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA2E67C95174 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7u3ltvf7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 637 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0DC0F92086A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcccqrcgn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 638 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 434C03554365 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjyqcuxmx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 639 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA6E702B8887 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyqh2g8x0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 640 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2E4815DDA36 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9xyev2ys 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 641 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 752CC7E9AB98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjlzj2uvw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 642 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58F48506D57A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8upch6pr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 643 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2C3768F4977 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn0vug9jh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 644 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 43FA0E8AB9FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg6f73mkm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 645 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD705941320E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcd90zj8a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 646 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CDF29B13520 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz544s6cw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 647 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47215763D045 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0qpr96gk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 648 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E68A79998456 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9jx895jv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 649 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BBB9D6B33432 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psvf422j2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 650 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1913FCB42A73 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpcm4wta 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 651 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FB40AE3CBC27 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmd2p4en2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 652 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 07B7689F655B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnrq0r9z3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 653 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27C03A15FD4E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puxyhqs0f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 654 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4896386F0F9B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peejvg867 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 655 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1400EDDB59BD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5654wn30 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 656 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D7DE2605E63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkjflrp8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 657 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C9FC1362961 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxvxeg2fc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 658 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6B132CDE2C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p39wdlvtx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 659 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DD54D664517 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdxnmu089 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 660 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1522648CA0CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjd6dwwdn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 661 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B61E6130F4FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7kkcdspg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 662 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 77EBC67EC368 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1papg523w4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 663 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D1D206F14CD9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p76fnwecw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 664 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 61A6DA5A465B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6n4u6mlq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 665 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F41D8CEF8050 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hugsm8t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 666 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17E88A5D8C1F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pml09p0wa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 667 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0048154C8DF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p74g87gwh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 668 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EBE5FAFA375 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psyrua0gd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 669 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBDC97D16026 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzfj22866 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 670 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 69D969E482FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p787h4mjz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 671 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6EBE73BCE5F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqamgycvx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 672 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEF340D9A84B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pglc39cl0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 673 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B0BB96AEC66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxj9y655 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 674 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB7BD8ADE6FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl9mk6xqh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 675 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A9FDC1D7AE43 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdf0mv4ct 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 676 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA2D51E94982 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptuqg5xj3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 677 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C04291F2940 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt0qz7m9u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 678 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C63A149930D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psfthrc5t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 679 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ABF3B027A4E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkgu62wz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 680 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC7DB2761A65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pukl374e8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 681 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC50146CC0FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4vc6gz03 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 682 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCE223960CE0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzfshww6d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 683 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 21E6FC0D28DF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj5dpu6af 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 684 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F7126F3EB5D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p70xj7jyp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 685 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 872915F905E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmda0fsa7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 686 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 168F4BDE86A6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px0vj67r6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 687 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8FED13C16C4C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pask7ppnc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 688 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3A3B0C2C784 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py0nmasfr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 689 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D74A919CC9E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkyme6cm6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 690 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0B1F16B0C63 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw6g69yqf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 691 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7472D7E13DFB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p67qw2q4p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 692 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C515960B4F3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqrdepsl4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 693 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36D253B90EFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfla3lvy4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 694 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A491D8C8797 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnhhyy0la 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 695 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E112064FF189 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0zhgymu8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 696 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17B5F3678327 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvj7ndpy2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 697 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D6F5EDD4FDE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptwnl9t52 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 698 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 038641B10ED7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4d4wgzn3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 699 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4EF2B0A5570 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdl3rk3pj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 700 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34BD893B8158 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdsma30dj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 701 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F22C583E41E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9kq3y2rs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 702 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C47D1116ED0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf9tl29r8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 703 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 55524EB83341 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmqq52pmd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 704 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5616A75948DC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvhl3lye3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 705 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5201EC95C93 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p30lq6vfr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 706 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C272E781038A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3cjndwed 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 707 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 754F8AF83714 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pugv3cq88 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 708 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBADE8FFE4D0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0zxjfhdz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 709 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC4E59753A41 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwl4vy2sv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 710 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72F9C9512D9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvx50qfp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 711 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09443174EF2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn3s437sa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 712 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5063ADC4ABB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4a046j9u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 713 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3BE10820136D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paw67yp77 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 714 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 785B2BB41B8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcq3why2r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 715 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4803B83CDE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqehhwjpc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 716 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85F2EFC8E640 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmznuzz74 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 717 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8D42922504A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkufmfwkv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 718 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67867D9BCA26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptmtfs502 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 719 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58CCC0B79C0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvdc7y6nf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 720 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0CED3184CDE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1palts4sj6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 721 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F84510EE514A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p72pw4xj7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 722 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F2AF03B8E1BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcld26dd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 723 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E95ACDEC1467 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pupc0stwd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 724 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EC7C90519103 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6hr9edzc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 725 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCA41045C215 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqhut29wl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 726 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CEBD4078983B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvxrnv4kd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 727 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5F44D580E68 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt2aklpu3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 728 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 73A0BEE600E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2e3lmvhm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 729 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15415B497C8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3qqnjdmc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 730 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB97C7983BFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr638hu9l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 731 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FECFBF47F5D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puh6338h3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 732 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 089A9EFA8628 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnhkk7r0h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 733 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D45289F3656D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkmrauee2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 734 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A6EA5169CA62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxjmpqscz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 735 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01064F4210D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzxqfshte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 736 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3D46288B1E73 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwr8wa29j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 737 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A59E08CFE9FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjjmh5xxe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 738 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7373961B9EB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptg6q03xa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 739 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A425AA84BC82 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcqlvj6ya 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 740 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E7274992590 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28y75slv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 741 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA8AFD0F04C3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnfy8tjuz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 742 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 97E06E7F8738 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pctp0myss 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 743 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F2DEF19106C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p20u75tsc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 744 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DF940D94096A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1payk7g80e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 745 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A6A3F6B97408 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p26jltsrm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 746 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B47BDDB667B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ehv0xxs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 747 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C32D9EDAC7D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px34d7tcu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 748 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86CFFD0CC188 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2vnc832q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 749 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 53260196F825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ql05xhw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 750 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 357805C87F87 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdrdkwxg7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 751 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCD30B5F9C14 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ed238zw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 752 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5BEEBC7C2279 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3dtd0yxu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 753 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0F557156BB7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwcq6kfh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 754 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2673C9853753 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psdjsx5d8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 755 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FBB3154220D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4f34ds70 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 756 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DA199AC8B621 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyg98mdph 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 757 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD982D52A583 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk2cpj0rc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 758 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9B28E255FE25 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2wu3n064 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 759 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2925AE6CF3A3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9c836rg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 760 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4CB398B5A255 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjpkpcwum 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 761 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CFC68BA94600 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq4mhm50f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 762 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 88837463A950 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwhp07ssv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 763 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42CC51BC49DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv0t8gn35 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 764 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9CE9E4CDBDF7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg5lcjg2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 765 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B9AC5A98B319 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcfp6kac8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 766 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 46A692378EA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3c7l2da3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 767 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A30F7BF245D5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptvlsnzf8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 768 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8879F238377F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnkelgkw0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 769 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CA8FA8D28351 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3cyuyf0h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 770 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8140EB2FFC5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p32hlyw9t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 771 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3E6813B6A5A9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqsj0galk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 772 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FD80CE29A1A8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptaus0rse 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 773 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F9A9E9C77200 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjnz59hk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 774 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26EE82652BC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqch0wwym 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 775 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B0E536BEFF58 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7jzsc3xq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 776 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A13C9F2D3FEE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppa09k9nq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 777 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEF36407E0FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prht2kwpl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 778 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DB8D30A8EDC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pur8ltuhq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 779 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34D059615189 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzehu5vav 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 780 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F72B52DD2C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hes30cc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 781 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C87E2BD64544 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4f0nqq64 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 782 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5D367C31106 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwffxfc9z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 783 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AC310BC0A09 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6dck9zf2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 784 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F0077DA7709 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz8uuzhcr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 785 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C1E685D5A08 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdmmv344t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 786 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D8346F77BB45 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexdr6gys 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 787 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5CF151BD9886 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1png0uaw0z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 788 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F073C5A99ED7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqk8ucu0r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 789 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2796E0638C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pul9hzljz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 790 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB771D43E4E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p84w5mevr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 791 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7A0EFD98C160 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p570lqexf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 792 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6D461AFF6A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7mgcgmmf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 793 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E5C183AF121 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p844h9d0a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 794 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4CB63864EFA5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w57mcjc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 795 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A7DF135C03A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pum6v9jzf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 796 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F41EC0C885B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ymxchaq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 797 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7FB677BB87FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxezudwh0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 798 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5164164E70D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdy75xgg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 799 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8201AB137711 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmxak6kgu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 800 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6307AB63466C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3ak9cyt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 801 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8419022C213E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzlf66mrr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 802 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A9BB0EA9A25 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paynwj8tt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 803 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0B7E71E336FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgf3j5nvs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 804 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 253BED94113B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p44atv8m8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 805 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3615F2D4BED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz5dzjaxu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 806 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 378F949916A8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6rcsp57w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 807 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6827735F758E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px2na675h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 808 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5CFD907810DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p66kd5k75 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 809 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4DDA067E818 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqe98htgq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 810 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 593BC8037922 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa5a2ealj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 811 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 241A26794777 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv7s34vk8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 812 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26D5FEA45B01 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnm3nu7d4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 813 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 593F218C37F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p03qs5c59 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 814 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92A427DFD4ED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p825tmcqj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 815 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EDEF5EE552B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6937wlgu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 816 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 556ADC669B12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjnyu3ez0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 817 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 982B162C760C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pec99cdhp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 818 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1584831CD605 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfa7juqd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 819 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8119FF59FE8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py37fexm2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 820 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6BD42269C280 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0gra8ndy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 821 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D3E355161FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfed63uz0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 822 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8621DB7A462 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq2k8dua0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 823 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C937AE22137 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p59kpfvn6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 824 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C01BA2846DA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2rq2t0z0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 825 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 479A82215D4F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr8c4fp5g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 826 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E7D1F050F52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psqw2hk2j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 827 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BEF836610023 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmpdt70v2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 828 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE49FFF00B3B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pstrlgml3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 829 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FB7DBAA14C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppls6ssu6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 830 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 23F64EE10085 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxfdu9jkt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 831 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F590231AD93E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfspqlmkh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 832 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ACA8144A4964 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pekkj3f4n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 833 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D8DFF35F8D98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmhettz5w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 834 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A342D850BDC6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peuzur0sd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 835 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C28D542C80A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjfs8zcsf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 836 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 64FC0F08EE23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plw5se4ym 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 837 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D18DFF1085D3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6d6v5fa9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 838 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AF4E3B76CC16 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdvzw59h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 839 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 469648A7BD6D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pha2frwtn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 840 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E23E7E49CEC5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5uxnhd8s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 841 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F1B1350705AE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzcsw3pex 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 842 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94620DE525B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6hgsljpx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 843 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90CACA6D3298 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwg7f3h4g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 844 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 65E89B014A04 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pul6vvexf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 845 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86A9E8549F83 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqglrx050 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 846 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5E46F226D717 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexyy6q2x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 847 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9FF1C11DB50E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0udtk4lx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 848 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3DEF0519CA2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7lm0w8dz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 849 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 567152CA3975 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8j9zezxk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 850 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F4C3E96DF91 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puynv46c6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 851 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03F59169C284 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prqyr9a0c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 852 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F6D288309ED3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt50rwdem 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 853 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EFE389CC8CD1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1padrqf5ef 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 854 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9593ED06ECE4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgtkmjp3k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 855 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 724BB3F03E28 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw88ms3yp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 856 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 20F93501CBAC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr655hkwl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 857 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6D72705A9F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu5afjsec 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 858 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DDAA3795E65F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkes6k3r8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 859 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C50B2F54929A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pml6xcqn4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 860 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0AB534E161B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcng8lfsd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 861 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F3453EDD81F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwnesjfk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 862 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D10A4090E738 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptjvzremq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 863 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 267790CF136D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p24tarle7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 864 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E9F281A5745 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfhgwr6g7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 865 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AED14E409CE2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7pwvnus4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 866 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27E9E183A8E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcqnyjnw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 867 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2BC3CF02C784 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm9lwcav3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 868 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F802898C688C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnuzvw83q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 869 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5F8BB497C7A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pask692g2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 870 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B25A627A29A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptf2cw7gy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 871 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FA0A2B37B99 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt65z3f0w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 872 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CDCE20DA7E74 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pljfm8hsv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 873 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72802946BC10 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psuaezl9s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 874 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B0BAE619720 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn35uuzj8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 875 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 162E6B1591C1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxalhxrav 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 876 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C96671C65162 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pak9u89rx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 877 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E83AB9580B13 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq7vaa7a9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 878 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A2B99F155D48 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxuf5qw7g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 879 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3CF5E3A51706 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pprsyt7at 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 880 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 989B404E1FFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2udnh86x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 881 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4AE1CC835758 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9awetj0f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 882 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42BDA8EB7694 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgwulhgx9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 883 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4C897E6B011 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxgn50hj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 884 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A660D4DB14E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pssq8jqwl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 885 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C68E049F982E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptztv4zhx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 886 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 61EBE80F0711 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyz8suttm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 887 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E1E3024C27B9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4pm327hu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 888 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 373BF4680760 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4qd7vuck 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 889 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71CC4DE6C0A8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psymqm38f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 890 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D0665A62F25C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptc2vwsyr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 891 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A335684D6688 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppnuff2ea 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 892 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C4DF81A7A9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgx46xc96 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 893 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD60907F4E3F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4xs5l7yw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 894 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4BF4219C52A7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0qn3dckd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 895 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6692E0D88B5A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0qe9djgf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 896 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6A1F2388F787 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3pwl8yt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 897 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E504EE3E35E4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph0h7gvd8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 898 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A442B8A8F990 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2wnwswev 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 899 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C47B40B86123 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4ktsgj48 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 900 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FD004A617A5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptyelg4sr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 901 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FF2132A5322 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz0xx2ckn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 902 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3C8A44A51E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54ln2ltc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 903 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D2A214B0320E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdvuujf3a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 904 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF828FB66C2A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps8ewnenn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 905 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DBFF83AFDAF2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk5x03rd8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 906 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90B299DDFD9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkzrjh7vx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 907 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 419EFB1D02AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdwm963mz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 908 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36B522AA4E96 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3dqv8507 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 909 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E02DD9E9394A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0dq9yz9q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 910 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 89D047C26B69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnd9le328 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 911 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7D9273B5F124 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqa8dx7dz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 912 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF44698C9C9E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd5j2mhj4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 913 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DD277914D549 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfxsw6gw3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 914 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC1466B38B48 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6tpfmh3s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 915 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FED070BA47F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prtqmty86 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 916 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F6C4FDA8C82 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwn4d39ye 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 917 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFF90B3F1196 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph6pcweru 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 918 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79872A8FFED2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prsjj5l87 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 919 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31E4E5E6A29F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv58evmq0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 920 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3188CA752972 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py0j2c27m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 921 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D47708F3D9D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4vn9v6d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 922 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA5F8627FFC9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pepnk4qhl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 923 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE51E519B1E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmntd99de 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 924 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7DC238D5C91F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plaqwl72k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 925 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 178B583DF730 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py845ppxx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 926 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AC63F925853F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9agqq224 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 927 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 722A8893E403 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxvkuvqnj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 928 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79007EF2A7E1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps72z45df 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 929 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 865DEF91D835 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp87u5j7r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 930 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01A21C96FBAA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmfczlq5x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 931 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 18696DE5238D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsn2qjvc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 932 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3845E19F5CDD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ysp4pr3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 933 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B4371168E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6tekvnhl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 934 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BF4EA192BA88 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf33j6gpz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 935 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4353F77482B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps7878ej9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 936 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEF7865DE3D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz8rgs8j4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 937 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE8182AD0D86 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzkxpj95y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 938 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0C5DC8AC245 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3mq2ys4q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 939 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 20D7EDD45548 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paxggyayc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 940 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC33FD9CC3BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ldqaphc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 941 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 74C86A4606BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p932pamrk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 942 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 189B42E5E8DC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p08rspjy9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 943 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 73C842B9E586 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdzqj69zu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 944 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D01490CEB710 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p48pzq30d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 945 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34BE1651D065 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps4mdkczf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 946 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 569A727D21BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0ez8hq5y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 947 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71DD730D160B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu6c49paf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 948 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D601C52D7698 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psj4a8v3j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 949 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1AE91A6FE266 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psymxfghc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 950 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 083BF781EF82 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pah8qexx0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 951 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3143EA3B7BA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe25saqn3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 952 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9361FB2E33DF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjag24zd5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 953 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5CDDAD2690A7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prvh6e2u9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 954 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF4DEFFD6E12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw6vz22ru 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 955 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7EEA5A40B4C3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnmzhng3c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 956 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EB6B349342B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3wvee2d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 957 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 228C8F1FAAF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfnjd05fv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 958 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FE0626C3180 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5kl66t8n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 959 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71E0A4D60611 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phqck5smg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 960 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5014F60CC07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pct0xtd8v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 961 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A286086996AB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa2q0n88p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 962 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AA69362ABC53 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pey8yt7h3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 963 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF3CAA083210 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdj7ax437 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 964 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0792C0250FE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pre797k0y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 965 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 33A0D45DE220 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps45nrvej 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 966 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B4D9E240DDA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p798ee8cd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 967 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E28D67803B8D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p289wmvgu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 968 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B090824D3EA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg4lvakur 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 969 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 34FA556571F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxttr540n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 970 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54A7EF0E6704 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p965x896u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 971 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D07EAFF10DB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9q0va4y3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 972 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D1C5EAC54C42 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7axz5zxg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 973 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B35F3F20936B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psxqjrumd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 974 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 024E128C7506 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxdw6236w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 975 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2EEFDC5B08D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppasph7wv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 976 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8A93EF02B8D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peawmkaqg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 977 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72F802BF8CA2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzsfwjh7c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 978 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 182230F18DF0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjep4qtr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 979 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2B77F01CB086 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prmdvzpkw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 980 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 814CC22A0AB0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg8w4ef3l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 981 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C2548B0F5AB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6vvndezk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 982 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E01C85FD5DF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl5h7xjzl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 983 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 10080AFD078B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd4u8wfvn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 984 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA8606FF8024 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmlxklwvl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 985 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7EB2A9C4C18 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3fgvt6jh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 986 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01BDAB1F1334 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptda9dhk3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 987 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EB3F51932498 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptaghct3z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 988 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ABF571D45169 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plyd0lnmj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 989 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D59DADD31178 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdvmyehvq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 990 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 11D8F02E94BE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe8eahh2m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 991 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4765A99467E3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv9mw6rgl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 992 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 24FB86042F33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3lyvagmj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 993 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F89CD9DDF4D6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pavqgm43x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 994 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3BA99EEC1D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pph597y9m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 995 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BFF2EBC7DF2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj74hphd7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 996 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ACF2241959C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p742arau6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 997 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 557E73A719CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9sd7cc3c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 998 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BAEA6AD5EB45 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3q8ucg5g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 999 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 30D0CC57F6C5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkj6gwx6d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1000 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01B3BC532406 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9eq64cyg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1001 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 97DF137761E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzjka3z20 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1002 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2DB08AF74647 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5kly80tg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1003 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 78F39388FC39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2kulmgzg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1004 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D45799199EE6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd4e8uy2v 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1005 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC1070B77971 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w350yh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1006 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 67DDD40F0709 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3prsftem 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1007 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F6D5C5A69F5F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppjpj34jx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1008 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1591E92FB13 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa0fv0hxe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1009 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2B0E79242302 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjd9ekeel 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1010 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 978CE32AAC95 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prszglwdy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1011 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49C7B19863BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfum2h20j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1012 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8E40B69820F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px6yt04xh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1013 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 921EE2E23DA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psvysqwse 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1014 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D395F16B40C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn5yw54el 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1015 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 00B709073E6A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py4nmv9rw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1016 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8DE82D450C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnyl9h0a4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1017 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E557B06AF66A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwdr68gq9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1018 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9DE9A58CAD5D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu907lh9t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1019 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5ACB987968BA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr5fx8p54 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1020 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B84F3AA64AA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psra859vz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1021 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 685729DBAAD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqy2lxw4p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1022 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6342CDF6E230 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkp69s9v5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1023 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0ED529BE224B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgfewpzlp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1024 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47E81453C295 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plenppjpl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1025 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B9CCEE19015 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4r4k3ck7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1026 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 48ED67007C52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p74c2xf6j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1027 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 11341965F7CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjhnf4hzx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1028 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8B3B5846312 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu4dg3emf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1029 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F506249B71FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9r3npcqg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1030 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD1D8AE2F279 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89zc9k0t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1031 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94D95088DFC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu407w7cu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1032 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9CDD4296AF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plakg8003 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1033 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6CB4E595A3AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmeq56fqv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1034 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2ECD0BD3A878 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptx70ngj3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1035 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7368DFB2FE06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwkytkrk7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1036 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 271BC1DA6C8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdjz84exs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1037 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A6A9363BA3EF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9f2xtms8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1038 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6DE1A25737DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxydt5ech 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1039 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0447791828F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phavm2j5g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1040 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1722E97286DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl4czshfy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1041 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0DB83908575 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pspzqx0v8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1042 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79B2878358B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa9vyqj2h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1043 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47CE300C119D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxtjzsvzr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1044 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98DA5B8E332C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyav7twdl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1045 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5274AB95F429 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pasrn57s0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1046 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9A42E17CA677 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7q3sp98y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1047 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E3186824FE7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqlr7gfgy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1048 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 477C11F1AAEE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcn9dljyn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1049 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EE2377B3916E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peu9v2sjy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1050 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 015A7824B88C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppuxlfpyq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1051 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 44DDB81726F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu67ht8qk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1052 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 966F3F6A3C44 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9ejmecl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1053 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8731B0E2D0B2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptwv3jcxe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1054 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8ECDDE73FD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp08z6uvg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1055 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 96C1B219DBD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm4vdh0lv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1056 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15223C3518D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px5maf4e3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1057 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA86A180018C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkfraw652 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1058 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F326ED58B9EE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0wc306wn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1059 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A373BEA6AA80 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0un6p5wr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1060 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AD45318E8C58 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p87qvnavw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1061 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A0B14F7C66A9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0787lhyd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1062 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E806ACD85D83 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prft8nu9j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1063 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F5C69C671E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1panws7ffx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1064 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 760F30DA4CAF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxwh4qrz8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1065 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 929DA60BC8DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvna9l9wy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1066 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7CF877C266B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p68a0s800 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1067 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 02AA6AD33C6E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pullqp09s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1068 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01475B71611E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf0uedy82 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1069 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F353B47BF1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnvnsu7qx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1070 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FD118B5D1D15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppzwq2927 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1071 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BE16EC0FB5FE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkyd5l5qj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1072 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36BC32942754 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfmw43ft3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1073 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 10C8E47EBEE0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7nywv3tx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1074 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F61D0C092A2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9n7hmutk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1075 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E7FA6AB8BD4F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt0qpfwyf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1076 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8B6E5CF4A54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3t72cqdq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1077 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D4800945BB7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgmpltv38 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1078 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 14E481C76F6C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pacdhwz06 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1079 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1C18BB3FCE2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe2mwufxx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1080 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C61B8CFC4A8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8wktlzqk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1081 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0931C4E89259 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzfzanu2s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1082 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94BB2A2F082D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc59nx6f7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1083 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 63209CF0E054 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p672vrsqk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1084 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3BD50BF0EF9A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4hs52t3n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1085 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 90C50F6928B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyksc8dzc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1086 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1DA01C1F40FA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ylcmzls 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1087 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 221094D87A2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p97xtd52e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1088 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7490CFE7F861 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ledjs74 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1089 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A2BE172F1B1F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7kvefrfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1090 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4D29EF34E818 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plkmxrh20 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1091 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 133389DD80C0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6w9lcghn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1092 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C68AAF19755F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9vzx74fk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1093 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80A907B124B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pulpyfw6q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1094 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0912BB864090 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqae5qway 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1095 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F2A735AB37F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pehl9ljcc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1096 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D49940202F3D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5r6ags03 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1097 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 688EDBC60500 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw08cx3yc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1098 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 817F1BDD8A24 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwydfk2n0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1099 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E8D0275CA3B1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe3fgf7p4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1100 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6644F174C6CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pak2fpqkc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1101 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1589F875FF7F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyj2azrwu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1102 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17806CC88AE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnk0fmn0t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1103 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 50D45FC4D442 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppa0hlsca 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1104 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40BE759606CC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pungw88sv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1105 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 26C75F87F3E1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pansctajj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1106 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 300DD376072A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p53p7qk4h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1107 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C9F8D59BCA1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puuaf68n8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1108 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F06E78F6E983 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pswxzeamf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1109 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4BACE709E023 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pswslwtja 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1110 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8149083BF4F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppx60vc0t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1111 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 698C9732F8E6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0f709vxc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1112 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7572CD2CD031 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph0lz56pa 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1113 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 59B78B5924CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psa8rah4l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1114 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F34F60DC1A23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqlf932ex 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1115 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1232C10A1B75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pskxvgfk2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1116 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 698A8C92508C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8w78dety 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1117 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FB0499FD3A03 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9w93hzx7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1118 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C71E18A8BD5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0gvjyfsy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1119 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB0CC16144DD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0j9mjuny 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1120 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1CBE956BEEB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg2vqasc3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1121 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40B08DA9CA98 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9t8nqnn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1122 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F0C675A7A8D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkcvp5kqy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1123 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AFB04F27A69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyvpwpz50 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1124 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D006CA0F29B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps8ue2h36 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1125 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C77E4E550E7F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfyt0vdw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1126 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9BFF2F576464 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxmhu4uwx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1127 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3EE2896BCD7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p79lmrg6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1128 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3CA4AB44E3AA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1palpj3nnp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1129 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EC80AE96092 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p804pp337 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1130 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F9579203338 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppv9lsuz9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1131 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DED00F5360A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psepyuakm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1132 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15A2174EDA7F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu5l4lrjj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1133 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0572AEE7F227 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p82tvvhwd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1134 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D977AC86989B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxd6u4wt0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1135 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1B743A9C0A28 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phkm5n82d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1136 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FB8CF092A996 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjwfcevz4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1137 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 24AAB8B7A90B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjfng5z0z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1138 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB8E4EEFE355 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phl853c5j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1139 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DFD41DE01569 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0957v038 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1140 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 104641495237 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8kes4syz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1141 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BD26C6CAF48B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvawjudvx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1142 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A0A6624F4B6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptfd3jfmn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1143 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 389AF11B0944 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8adkfwfg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1144 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2413EDAA78CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyaxecth5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1145 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB9E6C2CE974 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxdpkdae4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1146 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2D53342827D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe6qyke5t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1147 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB29C06EA638 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm493cazv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1148 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ADD3946929CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p23hc7rt3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1149 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F802850EC84 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p26uvu3kq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1150 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 78EDB74A0133 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3hsmdvfx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1151 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8CEA2218E3F0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr07mlghd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1152 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 48708BBFD26D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0khsjq8f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1153 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6A68BB02C889 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pceezhvhw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1154 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F871DCE622DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89x87286 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1155 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 009F4B8BE159 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr5q92ctq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1156 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 71C697A27B34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5dhkwun2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1157 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72A22ADFCCAE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py53yrj7m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1158 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E07B672C46D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppxjslg8l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1159 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E0B4D45BDBE0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvfx2ea5y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1160 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B0F908B96B37 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptejp4mgn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1161 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CFD3012C2FA5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p63nwjf57 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1162 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8108542D69FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9w982hv9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1163 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5F5E176E410C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phqd5wfx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1164 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0F1E977C1A0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc2vtdgjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1165 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DC454B89F8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pehq4reh2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1166 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 752CE65C4931 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phrvwszzl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1167 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB0D41317A39 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgramjd06 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1168 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE1BA980A554 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0aaje2tp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1169 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D7718689EE4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfluyagde 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1170 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 47C0380D2E8F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmfkdm4gs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1171 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEA97631B288 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5tmtfxfh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1172 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8F33E48BE1D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pju0trreu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1173 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC3AC488C940 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv9xazcye 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1174 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 190614FB4FC6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0jxtlvxp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1175 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9D630DD0DCD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdg9awap5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1176 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EACA59DFB47B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3eek06xd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1177 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 856B1E3D1AA5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pywn8ert0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1178 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BAEE29679334 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7v4xxws8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1179 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF43F51A4B47 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9zclqhuj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1180 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B8A6D8347F2C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phve69zj0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1181 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FBF7CB824DEC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz93z8605 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1182 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A5AF9501B8DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcfzhvtzd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1183 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 203AE3D59F7E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdn6uk4wp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1184 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98D1BDC8DEFF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ymahp3e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1185 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C6B6C1BC070 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxr4x272x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1186 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 05B99723C1E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcmsqpsf3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1187 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C544E017712 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv7sc67p6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1188 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E4F33E15FD6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9pndwgk2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1189 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E54368AA840 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puwslcq7h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1190 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EC29425D422C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7futxdu9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1191 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F232CC12CAE8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psjd4ffsw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1192 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CAB329DEBD04 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6qmzuf5f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1193 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB2BE9EC749F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcrq38nt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1194 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9BFDEBB4DB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pajqxjpar 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1195 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 66F27C9EADED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmx0y8655 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1196 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 38CF7C4C6F7A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7x2ed97j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1197 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1EB74D9169A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pstwmcg5l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1198 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5543EC16F12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjrveq2p7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1199 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C9AF5B67583B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe9ztpykn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1200 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EDB66D8B0497 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pprwen03t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1201 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 32B95C7F6134 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3z5pk9gj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1202 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 52841426CC8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pym9t4svc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1203 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B871DE0A60BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psxuvx78e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1204 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5BD6293CBA15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt2usm2zr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1205 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79A48B82DE0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p009878vm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1206 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B59A07355517 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe555cf08 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1207 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6A96AFC1798A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfzsy8kt0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1208 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 36979FA9522A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr7dcv4yt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1209 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 15095C81633D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu7stqsrd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1210 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5B4F4555A211 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl49rga2g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1211 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86C6E2AF6820 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmax28lcc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1212 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BC79DA049EBC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4r4mw57y 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1213 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9F9031C07F32 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzx0cxmgl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1214 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 727EB70490C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgaad5uhp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1215 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09BCE410BBA2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plwpn697t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1216 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE3B522670A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcut0sc60 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1217 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FADCE347942E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2nkq85xu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1218 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F3880BB46806 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxe9gcrh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1219 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 274DC727F2F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv0e7gp2q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1220 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8F70192AA3AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8yeueml6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1221 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F0412F3BD943 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzwxt8ehn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1222 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B9FBA37ECE26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0vn3zj7f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1223 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 651D03CA3EDC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3uc88ql9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1224 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C477DA69E899 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pms66elx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1225 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 552984A14CA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptz9lfzlm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1226 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 123D0C618CB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paydzmmj2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1227 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ED9321B40BBF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phpssx058 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1228 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F544A4CDA440 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peya39xfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1229 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 219C8533A682 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pklklevwc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1230 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCB6C71E2B9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pchf8p8vz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1231 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEF945A67E06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9td8zxk7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1232 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF882C772A31 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7ez0vsmy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1233 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2CF7A290F0C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p92snlq8x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1234 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72D26424BBE5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plawn8xkd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1235 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 104F4A6023D2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv7f22sv9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1236 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B9D0F033CED0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pchtqjj0r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1237 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2CFDA5EE4BBA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py5mnepxr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1238 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 538A62602590 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2v77ct9s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1239 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7B110833DD33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pn8h3w8zu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1240 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F203AF6619F2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6a8jp382 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1241 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EFA557D49A1E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pd33jmz6z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1242 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3A150A9344D5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcugjrrjg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1243 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 302319DB3E92 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyd8ea28h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1244 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C74B29ED475 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p78edwgly 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1245 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 65924C064682 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8vjw82w4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1246 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 197AB2D0F2A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7jh8ytk4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1247 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 971F8231AE06 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxhf75cte 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1248 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EEE7FFCE4780 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2r4y4ua3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1249 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EE4C7FAE52A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu2zqdeym 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1250 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 51B9DE0DB19D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peansn7a3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1251 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17A84A3DF888 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzy9wm4gd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1252 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86DD65896C6F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54l5k5uk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1253 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D0589407AC12 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwm7v9ksm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1254 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4346957E818B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2t7hcqf6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1255 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5E119B941669 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmlz6g6dy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1256 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C9A92EF87CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pglcwr97m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1257 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7FABF0A95DB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5e2y6xlh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1258 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 52B18D1A73C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9g5c7dc0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1259 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 464AF9FB35F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3elhvx3n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1260 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 79700179B1DE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj690nfqr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1261 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C2083FD88D8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgxelclyf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1262 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AB07AD89599 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcg76yrss 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1263 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 243DEC4FAF8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0t300xxq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1264 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEC16A1DC1F1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puzysqe6f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1265 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5FE4169C3C7A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0yqvm30m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1266 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCA5C6E43860 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfrad66zh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1267 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 75059A2876C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl3ygt5h9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1268 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D19C69F8CA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps74m58s9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1269 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 600FCCF71D23 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwq72kwhk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1270 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E6CB9FD5B10 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwqw88qn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1271 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6EF44469FBCA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prv6znfxg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1272 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 109E883B87BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3c3tsfmx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1273 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3631046E721C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puzsv40q0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1274 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9FBF7E0E258A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwu4wv5nw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1275 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 285D6F8B6A8E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjk96x2tc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1276 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A4C7F1E27767 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pem9mkw90 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1277 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C6F7B2187FD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkk54p5f4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1278 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4EF660873892 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf5yzrr0p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1279 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 835F368C6935 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9f7xr3tx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1280 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7C83DC7D8615 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p65uuh5wu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1281 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 40B6A222561C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plygjpl96 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1282 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5C93DF0E62A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plqn9dlgd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1283 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C947435835AF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkpyvjp39 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1284 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B896ECE81C55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw6edyytx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1285 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8EA8259A528D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plncwddac 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1286 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 030EEEF5BFD3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phlmnssms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1287 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8070EB06648 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7kwgfsja 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1288 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCB2CFA4C0E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p04hxetvy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1289 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 05F146508407 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2et0ef6g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1290 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 99959AD69371 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp4u6se4a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1291 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85A1283BC5E7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyxs5nyc8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1292 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49A85CB1C9CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvq3e2x46 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1293 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 30FE457746BF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p69x53l62 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1294 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2E0EC3693B03 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptz8v0ca2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1295 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE8E78CC10C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7077rcly 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1296 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FC861CAC314 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkccajdw9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1297 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B01A3C75FCB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxscy56mm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1298 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E87EB71B8724 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvnvy6ftj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1299 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FE808218472F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phmq22rys 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1300 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AB78D654B37D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfv0vmsjv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1301 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98EEA8D2D34A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plskc4asd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1302 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 57F6E4656926 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pz0gd7e68 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1303 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 128E0941B030 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv4mxtgn8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1304 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 781239092BDE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps7hatlx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1305 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 48F89014D001 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvwzj2da6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1306 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 069E70D2D9C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnzzq00tv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1307 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BBF0C00D1FD9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px453p7z0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1308 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22C4567D5BD7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pll2hzdqt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1309 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC6EBDBCD459 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3qqhpnv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1310 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 328C7AD264DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8l575zge 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1311 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6313CDD6E4B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pykgtjxxj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1312 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6E1C98144068 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5ppvrlm2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1313 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 313CB20C8534 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa3c9chcx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1314 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28B89AAC59B5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5t932zr3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1315 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 781AAA69AD01 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plf54teva 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1316 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 95F05D5AB544 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzlxj0ew2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1317 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DA4A68A02789 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pupsjw3w0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1318 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B7659388138B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prxdfaz9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1319 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 12BF09CFB2ED ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pq7rp9u5q 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1320 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 758F7E50D995 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6asmgz0w 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1321 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D7F698237F07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9vewhcu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1322 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D198D89DD4C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwtvqr9u7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1323 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DF2A8B7C77E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2g3hu96z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1324 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4697678A5040 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8jme3ahd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1325 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E4847CAF180F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0cwh6u7j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1326 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 736A6317C3BC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyjwxus8z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1327 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 664B4517CB6B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfy3aylss 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1328 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6CA2B8641608 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8pqv2mpp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1329 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 07F672E0A3D0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmx53n03z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1330 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A460327F529E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgehd9a5n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1331 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 141654A03B94 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p22uctung 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1332 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7102F769B64C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj0pw4kt7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1333 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 58CFC54BAF72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plxcj3gwt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1334 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91EC0E3EBEBC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p28ej2sa0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1335 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AEFFB3E05192 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plcr62amg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1336 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C232951A78DA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvnzwv7wd 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1337 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7F2E30019F99 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkdncvcee 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1338 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E6C2EAD340F7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph53t8hrt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1339 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 75C424C91913 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmzw9xvvg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1340 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CBAD4543077E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plkz9dd44 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1341 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 490988F37AA0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu78ur76p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1342 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 766DFEC0BD76 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp6ach28f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1343 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B3B3A8DB97E5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptkf0yrkp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1344 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1FB6ECCC8B34 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paelu552u 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1345 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC450C4659CC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppqzdl8wy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1346 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 09141491B117 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmw0d7pn6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1347 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 961109887BFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr3asc24e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1348 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 22E34B086135 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3g8nqfle 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1349 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3F5912976EEF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzpjxwuhr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1350 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9C48F5C8B151 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgpl2n3vn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1351 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87064D9D62CB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ztqtcm2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1352 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A5607D94AAC1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9f03zavc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1353 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A8D6388C7148 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pymays3jh 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1354 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5E81F6FBA05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4af8kwg6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1355 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 80D648EBDD97 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9ln3ylke 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1356 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9886435D3012 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3lz2m2x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1357 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BA9750426656 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3yptfc3n 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1358 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6AB9C1B7F613 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7m6jwxsz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1359 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 875599CB588C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p90qceezm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1360 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9433EA58F88A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg7nlql7h 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1361 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 94A03960BADD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pt4zkrlx3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1362 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4758CF620771 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pad0c9gmw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1363 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 17AD00346CB9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjhnwuva2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1364 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B4129B3C2E89 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkvp693u6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1365 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B1D14CF9576C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdszjgktn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1366 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A00656B450FE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnl8ppcdg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1367 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5F0317A117D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5uc9g6e6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1368 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C6C47A323EB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p93upr7fj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1369 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DC95188DFF69 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqe0vqrt3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1370 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C0651D1A9E05 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8k3kgyd3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1371 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8FDCE4381906 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk9f97w9s 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1372 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CC7221388B43 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw9c4cdsk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1373 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19CCB91E35AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p89gtt7a8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1374 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1D366992839C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfvk90ul4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1375 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7A95EF53D7DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf6muqg47 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1376 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92F4101E0181 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p66cvlzlk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1377 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E12C6C4CF3C7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps2qf0zas 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1378 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4F4488E54359 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p427l3lzm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1379 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A572D3D39C21 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8pxyxjs4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1380 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0725CE2781A0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p385u62c8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1381 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 69E9CE8A0003 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phmss6fm8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1382 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2F4EF5AAE821 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc3u64vds 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1383 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 59F758E03C33 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pns9wmgy7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1384 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9981218B5998 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp78qsvms 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1385 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF64FA0E89CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp6hvgald 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1386 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 04E825DCE81D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgzq2j03e 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1387 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E2D32E4D5CFD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7cauzkce 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1388 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03530C12101D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8kdyp6hv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1389 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A73F79CA9FB6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3t9zvgfz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1390 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 70E8411E44FD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnh0xzknr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1391 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6C6740EA109A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgy7en8ut 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1392 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 31718C457A2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phd6nqrat 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1393 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B10CD744E1A7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmcgtyuz7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1394 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E85DED89FF15 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psgpgll3d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1395 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3578ED1AC072 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzv7jf225 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1396 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F9F7AD26717A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pvjsmafqe 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1397 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0211DE0010CF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pl7wtu27t 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1398 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA5825BB86A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1psnk8nx87 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1399 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 509A7A30E674 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg26xvvve 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1400 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 295D21AED269 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm2reyzd8 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1401 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1623CE5DECB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prt5g7u9a 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1402 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D29BFE636141 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkskrjtk3 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1403 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6F76B17A1100 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexjujtwp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1404 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 83EE7BDEBBD1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyxgcnt90 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1405 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 85A637188DAA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf82cujau 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1406 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7A2DA6795903 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkedc35ky 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1407 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4CE397AA50FC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqehzlre0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1408 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FCC2B9BEB619 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5fkqssnk 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1409 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 07925B2E8214 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pll7hsyy2 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1410 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 42F220D5B38D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0kdlgzx5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1411 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1BD7E2BE4F2B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph3js49h9 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1412 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CE5487D2C228 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjcdl6zlp 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1413 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B2FED4CBC5B8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puvx055vn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1414 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BCE904E13230 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pac9drtw4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1415 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E5390D7F8F4D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu7r892vm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1416 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 13559860066B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnumape4g 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1417 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2517D0C04C72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcna5jsrn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1418 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 862428E54724 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0pdvecc5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1419 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19B67044B6EE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfjhxjhns 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1420 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E01245D36CA8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjhvvef6k 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1421 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 32CFF59EB082 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmj9a6ycr 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1422 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CCB5853EBB27 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px4y3gyul 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1423 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 630B3A769225 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnj3swrft 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1424 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 38E1445757AA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj3qxxhc7 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1425 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3AFBC9668757 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pylxm7tkq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1426 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5824B94E5BB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu600hwez 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1427 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BEB74F5525F9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjg06zrxn 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1428 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 902BC3E63D75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95gch28p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1429 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 50E2F064E75F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw3ae98dy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1430 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EDD4D0D639F3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p574u8skz 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1431 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3B3DB8AAB4A1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6n5a95rc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1432 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 19EA0B3A71FB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p54sa7f92 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1433 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A4888C583A4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phcw3pcyl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1434 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1295F10B4183 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prke0383j 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1435 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F72D14D24F6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ph4k0j5pj 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1436 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B18A1A05EF62 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puu3cq8g4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1437 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6453A27208E2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2sd7a5a5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1438 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 87F989C8811F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkm4nur9l 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1439 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A908E36D2B40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pckszewxl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1440 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 016AD8D627DB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxh7qac2f 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1441 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C1154A465F61 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm9lp9yw0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1442 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 422E9F3FC374 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0q72cp9c 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1443 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B6141B978C2F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phfmwfncy 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1444 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9CFBEF62082D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1plakj287z 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1445 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F15209F59895 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwsmw3lc0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1446 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ BB1DEADE380A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4w23ylcv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1447 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9729EC02242F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgt72024m 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1448 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9769DC32F634 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcale6kdu 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1449 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1CAE0FE9AFF4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pmg8v0p26 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1450 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 72635B5F9861 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5tee76mm 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1451 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8B89540B70E8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcxtzdh4 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1452 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2A10EBA21F07 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppwcm7u7p 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1453 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 231C59013AA2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptdll3hsx 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1454 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1E2363491CDA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5zgp5stw 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1455 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A565A2B6BB31 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0wxqgfdc 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1456 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ CAC90B4A4D24 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puk6mgmfs 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1457 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D9C053DCF073 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdx9dwwfl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1458 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0D9F2044F865 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0ws8vhrg 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1459 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB35598E99CA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9mp9vjes 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1460 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1561C593F1CC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p609kru72 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1461 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 209D7A5FF646 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pef6ghauf 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1462 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0DD8F56CE5D1 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyvrjyzvv 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1463 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7FED18A0FA40 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgyk9ppk5 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1464 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8DA5984ED90D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp8jr0q5x 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1465 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 03AC26FC355B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjrzp664d 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1466 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 393D59802E78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pjxpn45rt 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1467 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 37308DDF91B7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pc7n8acx6 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1468 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 589B16AD317B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgcyzmy34 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1469 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3605F983B664 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgz8algtl 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1470 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EA6403870668 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9y8z26fq 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1471 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6472F8F9977B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ke5s2ty 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1472 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 92E33C661E38 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1py44k52c0 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1473 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DBC4869772D8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkatjm45r 1000}","time":"2023-09-06T10:25:13+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1474 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76D0C45B1149 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peu8vd8kh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1475 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 762FFD60B88A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95jkk7cg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1476 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DACC9CFD3E9F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pge4keaj2 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1477 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FDC64DAF65F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p48s8edpj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1478 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2F142A0F2AF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pfhqcnzj9 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1479 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A78BCEB9B9AC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzt6klhud 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1480 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4D3630152969 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdrj2f90x 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1481 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 134006866345 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1png979lk6 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1482 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9410274C2DF0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj9tjkql7 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1483 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 914A8E330D57 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pm4379d22 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1484 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AF122A9B1CD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prkqxfs49 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1485 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A57E1CE6D328 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj89wqdca 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1486 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 66B0FEF243B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg7my0qnc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1487 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DB582F07FDD8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0sc5s75v 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1488 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 5D424D949FF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pqzheucgf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1489 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 91B4C1B02A71 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu8f0z3xy 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1490 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 595A42D852F5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pa02xl8z5 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1491 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 01A087E88CF8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p35ndyt8y 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1492 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C15046DB06C3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcfkkxddd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1493 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 658268F1925A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pw3zv4crf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1494 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C5C601810ABF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pch9khr07 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1495 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76EF81EBCEB5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p98tspaqy 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1496 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AD493C3E115 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pad9z2snq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1497 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ ADD80BC4BD4C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxwaqxgrd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1498 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FF5E357C896D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcsasy293 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1499 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 32AA91430853 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5nt37rqj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1500 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F3E58516955D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdtvx4e9y 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1501 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0DBCBCD100B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pf3t77ddd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1502 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AFF76DD02AC3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdyszpqhn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1503 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E64D34FA31C4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnr6jz4eu 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1504 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 68A4F6B020F4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4znalmyg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1505 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 73D2D3BD0061 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p742ryvcn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1506 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2AAF365FDA52 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pztukecvp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1507 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 96502657ECA9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyu2tvl69 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1508 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ EF8AA0940B57 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1paysj3tay 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1509 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 95DF7258BC72 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1puv9cg7yj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1510 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 355B1A56BE26 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2m2dtp0p 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1511 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 224F0B353B97 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwxz57mpn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1512 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D3ECCA7EE825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2p8jvmhy 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1513 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D09652ACC09B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2955wgs8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1514 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4FC28891FB0E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pexhz5swh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1515 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4BD60386B3D7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxan3rf6a 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1516 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B020AE164680 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkt4hus3p 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1517 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 51E5E5E4D825 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkjvmhsfq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1518 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1397A86195C8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pszr09mhp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1519 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E28E1857312 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ps3cj8vh7 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1520 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F478720CE029 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptmtkzgkg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1521 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 339A9E111A66 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6m2ralz9 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1522 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0C9A1FB27569 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prjxeax3e 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1523 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A11DAE1E47B4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptwg86wmq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1524 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8272B5AF743E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prhu3lhgx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1525 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C5D42B317E9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgxvrrnsh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1526 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 217712AD56FF ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcsv08760 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1527 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6FE9E1513D75 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkf6p54gr 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1528 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86E6399932F9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9m4kn3mc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1529 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AE1E96B15DC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4qnzlgaw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1530 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 74D3BCB1D54B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pu705mnpx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1531 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9F51C764E287 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phnzf573x 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1532 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9478AF3F0EE9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pwze2vfyf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1533 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AF8F36096C08 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnfaxzqp5 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1534 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2EAB97408B54 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pk3t32m5x 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1535 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 049344D02A2E ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p79hwp774 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1536 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 08F408B39F4D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1petrqgum8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1537 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 39FE4B20643C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pphz3yanp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1538 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A2ED5D81BECE ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pscktuukw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1539 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9469177EFD50 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7w0efkz0 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1540 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E9A59F7E68A6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdlquv2uv 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1541 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A772C345E1C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p590jgtyf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1542 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ DE5D1C87AE84 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8k2fthcn 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1543 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 079DB1D318AD ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9ash3lc2 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1544 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2FAF0D51FDFB ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8n3fa428 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1545 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9AEF5DED81EC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg5yn59g0 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1546 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9E5B2DDD2CD0 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzuehkge8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1547 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4E63DC54E1F4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p49ytsmqh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1548 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 98C465329F8C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcse4jfyq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1549 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 521CE96824D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1phg5ck2fe 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1550 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E96DFD9DD25F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6cvpk534 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1551 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A718685761EC ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pcdlyhpmm 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1552 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6D7E25C18490 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pnze4vnz5 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1553 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6319C7B7768A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p9pvpxqkd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1554 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 811B6328D7C6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkg4mnday 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1555 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C6B18D0A3EA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pp3vvu8q6 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1556 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 49283DA85C8B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5hsdm7nc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1557 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A5CF574CE9AA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pg9706h64 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1558 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2C60E1D2CAA4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pyrzcwvmr 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1559 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 76A90CF7594B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p4efhva36 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1560 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D4EC65C8C59C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p0th75lgf 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1561 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A80DE24EFFA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p7e33ndn8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1562 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A55085A12464 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prplcmr00 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1563 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 46BDC4312708 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ppa35arsj 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1564 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 0786E9382D31 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdt5z9aec 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1565 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ F8F31060A1C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdzkk3fal 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1566 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7373998DCCA6 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p76rly3sa 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1567 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E1FB8C10AE25 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8dprvfw8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1568 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ A86172E3FF55 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prayfa4qv 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1569 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 86FC23A722EA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1px4pes7rw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1570 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7753E1DF9641 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p5usmxcc8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1571 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D6F0643C8361 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8vys95zh 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1572 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4B099853F350 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzc6qetdt 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1573 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C550C0E43F44 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8x7v7zcr 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1574 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 21FE2D743436 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxls33zay 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1575 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 254300F77B9C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pylq5plnz 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1576 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 27B875A3A3D4 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3fqhrccc 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1577 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 1F2D6E3F870B ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p8xah7rdx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1578 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 824B807B17D3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p3ne252et 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1579 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E3E724C9F1F8 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pgawc5u3d 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1580 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E33503D0856D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pljl94vy7 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1581 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AC0503237543 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pv68emnxt 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1582 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2400FD1ECB10 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p95275axw 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1583 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 64C0DD2EA2EA ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prnfqrtjg 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1584 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 2131269213C9 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pj0rd52jp 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1585 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ E46287397B6F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1peahr2pca 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1586 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3DB89E057BB7 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pr2a08ux8 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1587 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 9F81984856B3 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2pk6ckq6 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1588 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 6194B371A8C2 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pe38kwle4 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1589 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FDF4A7EFD8D5 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pftspphmv 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1590 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 56774AEE7983 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkfvdjhjx 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1591 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 203312C2CC78 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2ucvcpxd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1592 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4C5493D35905 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzhhmspp9 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1593 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ AE06DC7B0953 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1ptagwghwl 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1594 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 4A2DA133544F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p6s50txw0 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1595 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54E676E7D594 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pkkmnh576 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1596 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 3294BA05251D ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pdhk4nsqz 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1597 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 634ECC27C892 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1putnwh3ck 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1598 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ FC78C9B9BA0F ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pxrqlqztt 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1599 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 649D4FE52D4C ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1p2yn0tg9r 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1600 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 54925D79432A ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1pzud9a7en 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1600 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 7E3148D7AC65 ๐Ÿต 2c928dde {Send ๐Ÿ’ธ pc1prskt679m->pc1prrhak8ke 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 8C2BA331A7BF ๐Ÿต 07db15ad {Send ๐Ÿ’ธ pc1pa48400gp->pc1php86umlq 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 1 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ D5FE16C766A2 ๐Ÿต 07db15ad {Unbond ๐Ÿ”“ pc1ph8f4r88t}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 1 ๐ŸŽฏ 0 ๐Ÿงพ 1}","tx":"{โŒ˜ D129C24A6E55 ๐Ÿต 07db15ad {WithdrawPayload ๐Ÿงพ pc1ph5p6x24a->pc1p9paptdwd 1000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 1 ๐Ÿ”“ 1 ๐ŸŽฏ 0 ๐Ÿงพ 1}","tx":"{โŒ˜ 53C0868DB393 ๐Ÿต 07db15ad {Bond ๐Ÿ” pc1pa48400gp->pc1p37q3js3e 1000000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 1 ๐Ÿ”“ 1 ๐ŸŽฏ 1 ๐Ÿงพ 1}","tx":"{โŒ˜ ACB1885BA4DF ๐Ÿต 07db15ad {Sortition ๐ŸŽฏ pc1pjwy5yh7c}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 61F8879F9761 ๐Ÿต 890caa58 {Send ๐Ÿ’ธ 000000000000->pc1p70yleawz 25000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C54199756709 ๐Ÿต 569dd995 {Bond ๐Ÿ” pc1pedcszpa6->pc1p9ewdpfhk 5880931716030}","err":"invalid fee: fee is wrong, expected: 1000000, got: 8391755083","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/txpool/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 0 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ B5BF333A3ABF ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pjkg0hw7y 25000000}","err":"invalid sequence: subsidy transaction is not for current height, expected :89, got: 88","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28AC47DE7324 ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pjkg0hw7y 25000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8DE66FAE0FC ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pqeexkh9l 25000000}","time":"2023-09-06T10:25:14+03:30","message":"transaction appended into pool"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","time":"2023-09-06T10:25:14+03:30","message":"set new sandbox"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ 28AC47DE7324 ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pjkg0hw7y 25000000}","err":"invalid sequence: subsidy transaction is not for current height, expected :1, got: 89","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 2 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","id":"28ac47de732413983557b315f2e9b158863c32770b797aaf6d93932bf1115fdf","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction after rechecking"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","tx":"{โŒ˜ C8DE66FAE0FC ๐Ÿต 3127997e {Send ๐Ÿ’ธ 000000000000->pc1pqeexkh9l 25000000}","err":"invalid sequence: subsidy transaction is not for current height, expected :1, got: 89","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction"} -{"level":"debug","_pool":"{๐Ÿ’ธ 1 ๐Ÿ” 0 ๐Ÿ”“ 0 ๐ŸŽฏ 0 ๐Ÿงพ 0}","id":"c8de66fae0fc93d4868c81dba5f53acf3a9b73177d17b1b0487701ce048acd8c","time":"2023-09-06T10:25:14+03:30","message":"invalid transaction after rechecking"} diff --git a/util/logger/logger.go b/util/logger/logger.go index a878ec9ea..8c2affaab 100644 --- a/util/logger/logger.go +++ b/util/logger/logger.go @@ -108,8 +108,8 @@ func NewSubLogger(name string, obj fmt.Stringer) *SubLogger { goto ConsoleLogger } - logDirectory = filepath.Join(currentDirectory, "logs") - logFilename = filepath.Join(logDirectory, "pactus.log") + logDirectory = filepath.Join(currentDirectory, LogDirectory) + logFilename = filepath.Join(logDirectory, LogFilename) if err = os.MkdirAll(logDirectory, 0o744); err != nil { log.Error().Err(err).Str("path", logDirectory). diff --git a/util/logger/logs/pactus.log b/util/logger/logs/pactus.log deleted file mode 100644 index 95728dbe6..000000000 --- a/util/logger/logs/pactus.log +++ /dev/null @@ -1,2 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/util/logger/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:14+03:30","message":"logging configured"} diff --git a/www/http/logs/pactus.log b/www/http/logs/pactus.log deleted file mode 100644 index 9e0f7bdf0..000000000 --- a/www/http/logs/pactus.log +++ /dev/null @@ -1,25 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/www/http/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:16+03:30","message":"logging configured"} -{"level":"info","address":"[::]:34897","time":"2023-09-06T10:25:16+03:30","message":"http started listening"} -{"level":"error","err":"rpc error: code = NotFound desc = account not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid address: invalid address: invalid separator index -1","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = account not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"strconv.ParseInt: parsing \"not-a-number\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"strconv.ParseInt: parsing \"x\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = NotFound desc = block not found with this hash","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"encoding/hex: odd length hex string","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"Hash should be 32 bytes, but it is 0 bytes","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"Hash should be 32 bytes, but it is 0 bytes","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid transaction ID: Hash should be 32 bytes, but it is 0 bytes","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = NotFound desc = validator not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid validator address: invalid address: invalid separator index -1","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid validator address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = InvalidArgument desc = invalid validator address: invalid address: invalid bech32 string length 0","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"rpc error: code = NotFound desc = validator not found","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"strconv.ParseInt: parsing \"not-a-number\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} -{"level":"error","err":"strconv.ParseInt: parsing \"\": invalid syntax","time":"2023-09-06T10:25:16+03:30","message":"an error occurred"} From f33b2ebbd1fa9a43383aa0aa2c3503e0b4dd9967 Mon Sep 17 00:00:00 2001 From: amir babazadeh Date: Thu, 7 Sep 2023 18:53:03 +0330 Subject: [PATCH 4/4] fix: removed extra props for logger and fixed the working dir of logger --- .gitignore | 1 - sync/firewall/logs/pactus.log | 21 --------------------- util/logger/logger.go | 22 ++-------------------- 3 files changed, 2 insertions(+), 42 deletions(-) delete mode 100644 sync/firewall/logs/pactus.log diff --git a/.gitignore b/.gitignore index 5b5fecdf1..aa14240ac 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,3 @@ todo dist/ .releaser.yml pactus-* -*pactus.log* diff --git a/sync/firewall/logs/pactus.log b/sync/firewall/logs/pactus.log deleted file mode 100644 index d27fc7d61..000000000 --- a/sync/firewall/logs/pactus.log +++ /dev/null @@ -1,21 +0,0 @@ -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"warn","err":"invalid message: invalid message: cbor: cannot unmarshal UTF-8 text string into Go value of type bundle._Bundle","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"warn","err":"invalid message: invalid message: EOF","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"warn","err":"invalid message: invalid round","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"warn","err":"invalid message: source is not same as initiator. source: QmcEAYwUfpYyp6t1jnRvk6pWwTP1rjUSZfgKogCexNCP2q, initiator: QmRAkDQr3PNhjWraJs9fmYc5VnoovzMNFSrDPDSoj1kGT5","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"warn","from":"Qmdyv2kRXY2KvxrDwHebk53g1d6f4z3XGsz1ZisMYDvsMV","time":"2023-09-06T10:25:11+03:30","message":"firewall: from peer banned"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"warn","err":"invalid message: source peer is banned: QmYpmJaw3rMPRXkGWsG8Egx2hPcW9xTGiRpXQ7y89ok4Wp","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"warn","err":"invalid message: source is not same as initiator. source: QmUma4weeMvSrwQEjtMT5VQxFJtVDRa3CDTEawLdev2aj3, initiator: QmQ3mCfLdDMqGk3ZRRVcF8m2dqLC9aVDzwnUGZokQnZsfQ","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"warn","err":"invalid message: source peer is banned: QmTbNXYhFRrL8eUuyvxKpoAAzi46Vpb6HEGvpW4UDsBRSW","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a stream bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"warn","err":"invalid message: invalid round","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} -{"level":"warn","err":"invalid message: source is not same as initiator. source: QmUJTS9ruJK3hJRiXMLCzLmNYy4Z4Prr9H9t4u3h6iR5y1, initiator: QmStKrVEDoUHEMKwqEjXTRNeE5hRHdx91Pfoe9ALHMn6mC","time":"2023-09-06T10:25:11+03:30","message":"firewall: unable to open a gossip bundle"} -{"level":"info","fileLogging":true,"jsonLogOutput":true,"logDirectory":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs","fileName":"/home/amirvalhalla/codes/opensource/pactus/sync/firewall/logs/pactus.log","maxSizeMB":100,"time":"2023-09-06T10:25:11+03:30","message":"logging configured"} diff --git a/util/logger/logger.go b/util/logger/logger.go index 8c2affaab..8d02fca9f 100644 --- a/util/logger/logger.go +++ b/util/logger/logger.go @@ -94,35 +94,18 @@ func addFields(event *zerolog.Event, keyvals ...interface{}) *zerolog.Event { func NewSubLogger(name string, obj fmt.Stringer) *SubLogger { var writers []io.Writer - var fl *lumberjack.Logger - var logDirectory string - var logFilename string maxLogSize := 100 // console writer writers = append(writers, zerolog.ConsoleWriter{Out: os.Stderr}) + logFilename := filepath.Join("./", LogFilename) - // file writer - currentDirectory, err := os.Getwd() - if err != nil { - goto ConsoleLogger - } - - logDirectory = filepath.Join(currentDirectory, LogDirectory) - logFilename = filepath.Join(logDirectory, LogFilename) - - if err = os.MkdirAll(logDirectory, 0o744); err != nil { - log.Error().Err(err).Str("path", logDirectory). - Msg("can't create log directory") - goto ConsoleLogger - } - fl = &lumberjack.Logger{ + fl := &lumberjack.Logger{ Filename: logFilename, MaxSize: maxLogSize, } writers = append(writers, fl) -ConsoleLogger: mw := io.MultiWriter(writers...) sl := &SubLogger{ logger: zerolog.New(mw).With().Timestamp().Logger(), @@ -147,7 +130,6 @@ ConsoleLogger: sl.logger.Info(). Bool("fileLogging", true). Bool("jsonLogOutput", true). - Str("logDirectory", logDirectory). Str("fileName", logFilename). Int("maxSizeMB", maxLogSize). Msg("logging configured")